JSON.parse / JSON.stringify

KHW·2021년 7월 14일
0

Javascript 지식쌓기

목록 보기
60/95

JSON.parse

JSON 문자열의 구문을 분석하고, 그 결과에서 JavaScript 값이나 객체를 생성

  • 간단히 객체를 문자열로 바꾼다.

JSON.stringify

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
profile
나의 하루를 가능한 기억하고 즐기고 후회하지말자

0개의 댓글