https://velog.io/@yoonee1126/Day62#jsonstringify
{"key":"value", "key":"value", ...}
형태를 가짐참고
map의 값 형식 {key=value, key=value, ...}
JSON.stringify(value[, replacer, space])
function replacer(key,value){
if(typeof value === "string")
return undefined;
return value;
}
var product = { Name:"홍길동", age:27, gender:"M"};
console.dir(JSON.stringify(product,replacer));
'{"age":27}'
JSON.stringify(7) // 7(number)
JSON.stringify(true) // ‘true’(boolean)
JSON.stringify(null) // null
JSON.stringify([1, 'true', true]); // '[1,"true",true]'
JSON.stringify([“a”, 7, undefined, function(){return 8}, Symbol(‘’)])
// “[“a”,7,null,null,null]” - 하나의 String 값
JSON.stringify({ x: 1, y: 2}); // '{"x":1,"y":2}' 또는 '{"y":2,"x":1}'
JSON.stringify({ a: 8, x: undefined, y: function(){return 8}, z: Symbol(‘’) });
// “{“a”:8}”