Answers for "js methods to convert object to json"

0

Convert JSON String to JavaScript Object

<script>
  // Convert JSON String to JavaScript Object
  var JSONString = '[{"name":"Jonathan Suh","gender":"male"},{"name":"William Philbin","gender":"male"},{"name":"Allison McKinnery","gender":"female"}]';

  var JSONObject = JSON.parse(JSONString);
  console.log(JSONObject);      // Dump all data of the Object in the console
  alert(JSONObject[0]["name"]); // Access Object data
</script>
Posted by: Guest on June-08-2021

Code answers related to "js methods to convert object to json"

Code answers related to "Javascript"

Browse Popular Code Answers by Language