[Json] JSON.stringify() - 객체의 값을 문자열로 반환하는 방법
JSON.stringify() 메소드 자바스크립트 인수의 값을 문자열로 반환합니다. JSON.stringify(값); 다음 예제를 통하여 자세히 살펴보겠습니다. const dog = { name: 'hayan', age: 14, size: 'big', birtDate: new Date(), snack: () => { console.log("쩝쩝");} } json = JSON.stringify(dog); console.log(json); // {"name":"hayan","age":14,"size":"big","birtDate":"2021-06-13T13:54:00.683Z"} json2 = JSON.stringify(dog,['size']); console.log(json2); // {"size":"b..