JSON 문자열의 구문을 분석하고, 그 결과에서 JavaScript 값이나 객체를 생성
JavaScript 값이나 객체를 JSON 문자열로 변환
const str = '{"result":true,"count":42}';
const strToObj = JSON.parse(str);
const Obj = {"result":true, "count":42} ;
const objToStr = JSON.stringify(Obj);
console.log(str , typeof str);
console.log(strToObj , typeof strToObj);
console.log(Obj , typeof Obj);
console.log(objToStr, typeof objToStr);
console.log(str == objToStr)
{"result":true,"count":42} string
{ result: true, count: 42 } object
{ result: true, count: 42 } object
{"result":true,"count":42} string
true