JSON Parse, Stringify

Lessons learned in the classs

JSON.parse()

		JSON.parse('{}'); // {}
		JSON.parse('true'); // true
		JSON.parse('"foo"'); // "foo"
		JSON.parse('[1, 5, "false"]'); // [1, 5, "false"]
		JSON.parse('null'); // null

		

JSON.stringify())

		var obj = { "name":"John", "age":30, "city":"New York"};
		var myJSON = JSON.stringify(obj);
		document.getElementById("demo").
		innerHTML = myJSON;