자바스크립트는 월욜 0부터 세기 때문에 getMonth() 메소드에 1을 더했다.
const date = new Date()
date.getFullYear()
date.getMonth() + 1
date.getDate()
date.getHours()
date.getMinutes()
date.getSeconds()
const date = new Date();
const hour = date.getHours();
if (hour < 12) {
console.log(`지금은 오전${hour}시 입니다.`);
} else {
console.log(`지금은 오후${hour}시 입니다.`);
}
// 지금은 오전8시 입니다.
글 재미있게 봤습니다.