json_decode($personJSON) code example
Example 1: json_decode jquery
var obj = jQuery.parseJSON( '{ "name": "John" }' );
alert( obj.name === "John" );
Example 2: json_decode javascript
JSON.parse(jsonToDecode)
var obj = jQuery.parseJSON( '{ "name": "John" }' );
alert( obj.name === "John" );
JSON.parse(jsonToDecode)