Skip to content

Latest commit

 

History

History

13-JSON

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

JSON

http://json.org/json-es.html
http://www.etnassoft.com/2010/12/30/tutorial-json/
http://javascriptweblog.wordpress.com/2010/11/29/json-and-jsonp/
http://www.anieto2k.com/2007/08/03/toma-de-contacto-con-json/

    {
    "name": "Eric Clapton",
    "occupation": "Guitar Hero",
    "bands": ["Cream", "Blind Faith"]
    }
>>> JSON.parse('{"bar":"new property","baz":3}')
Object { bar="new property", baz=3}
>>> JSON.stringify({ breed: 'Turtle', occupation: 'Ninja' });
"{"breed":"Turtle","occupation":"Ninja"}"