JSON.parse()는 JSON 데이터를 가진 문자열을 객체로 변환한다. (이를 역직렬화라고 한다)
예시
var json = '{"result":true, "count":42}';
obj = JSON.parse(json);
console.log(obj.count);
// expected output: 42
console.log(obj.result);
// expected output: true
reviever라고 부르는 Optional한 function을 callback함수로 받는다.
Syntax :JSON.parse(text[, reviver])
JSON format에 맞지 않은 string이 들어오면 SyntaxError를 throw 한다.