parsejson javascript code example

Example 1: javascript parse json

var jsonPerson = '{"first_name":"billy", "age":23}';
var personObject = JSON.parse(jsonPerson); //parse json string into JS object

Example 2: javascript parse json

const json = '{ "fruit": "pineapple", "fingers": 10 }';
const obj = JSON.parse(json);
console.log(obj.fruit, obj.fingers);

Example 3: 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

Example 4: json_decode javascript

JSON.parse(jsonToDecode)

Example 5: object json parse javascript

var objJson1 = JSON.parse(JSON.stringify(objNotJson1));

Example 6: js string to json

var obj = JSON.parse("{no:'u',my:'sql'}");//returnes {no:'u',my:'sql'}

Tags:

Misc Example