Javascript - JSON

JSON

http://www.json.org

JSON (JavaScript Object Notation) is a light-weight data exchange format.

- From JSON to Javascript Object

var myData = eval( ‘(‘ + myJSONText + ‘)’ );

This is not a secure way. Prefer the following method:

http://www.json.org/json2.js

var myData = JSON.parse(myJSONText);