[TIL]23-08-17

hyein·2023년 8월 18일
0

TIL

목록 보기
26/34

newDate()

자바스크립트는 월욜 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시 입니다.
profile
As I start to move towards the goal, the goal will start to move towards me.

1개의 댓글

comment-user-thumbnail
2023년 8월 18일

글 재미있게 봤습니다.

답글 달기