날짜를 더할 땐 getDate()를 해서 + 1 한 값을 setDate() 한다
getDate()에 + 1 을 하면 getTime()을 한 것과 같이 number 형식으로 변경된다
const today = new Date();
const tomorrow = new Date(today);
const yesterday = new Date(today);
tomorrow.setDate(tomorrow.getDate() + 1)
yesterday.setDate(yesterday.getDate() - 1)