sJSON parse 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: json_decode javascript
JSON.parse(jsonToDecode)
Example 3: js string to object
JSON.parse()