JSON.stringfy
const object = { name: 'John', age: 30, city: 'New York' };
const jsonString = JSON.stringify(object);
console.log(jsonString); // 출력: {"name":"John","age":30,"city":"New York"}
// 예쁘게 출력하기 위해 두 번째 인수로 들여쓰기 값 추가
const jsonStringPretty = JSON.stringify(object, null, 2);
console.log(jsonStringPretty);
/*
출력:
{
"name": "John",
"age": 30,
"city": "New York"
}
*/
JSON.parse
const jsonString = '{"name":"John","age":30,"city":"New York"}';
const object = JSON.parse(jsonString);
console.log(object); // 출력: { name: 'John', age: 30, city: 'New York' }