15.6 날짜 데이터 전송하기
const before = { d: new Date() };
before.d instanceof Date // true
const json = JSON.stringify(before);
const after = JSON.parse(json);
after.d instanceof Date // false
typeof after.d // "string"
after.d = new Date(after.d); // 사용자의 타임존 기준으로 표시
after.d instanceof Data // trueLast updated