convert string to json jquery 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()
Example 4: convert json object to array javascript
var as = JSON.parse(jstring);