json에 관한 내용은 다음의 링크를 참고하였다. https://github.com/dream-ellie/learn-javascript/blob/master/notes/json.js 'use strict'; // JSON // JavaScript Object Notation // 1. Object to JSON // stringfy(obj) let json = JSON.stringify(true); console.log(json); json = JSON.stringify(['apple', 'banana']); console.log(json); const rabbit = { name: 'tori', color: 'white', size: null, birthDate: new Date(), jump: fun..