Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

reverse json.stringify

// You have a JSON string
let myString = "{'foo': 'bar'}"
// You want it to become a JSON object
let myJSONObject = JSON.parse(myString);
// Now you have a JSON object and can access its properties
console.log(myJSONObject.property);

Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #reverse
ADD COMMENT
Topic
Name
2+5 =