Copy 1const jsonStr = '{"name":"Infinitbility","gender":"male"}'; 2const jsonObj = JSON.parse(jsonStr); 3console.log(jsonObj); // {name: 'Infinitbility', gender: 'male'} 4console.log(jsonObj.name); // Infinitbility