Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

js parse json

const json = '{"result":true, "count":42}';
const obj = JSON.parse(json);

console.log(obj.count);
// expected output: 42

console.log(obj.result);
// expected output: true
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #js #parse #json
ADD COMMENT
Topic
Name
5+6 =