11월 15일 (월) 날짜 표기

남이섬·2021년 11월 15일
0
const now = new Date();

`${now.getFullYear()}. 
${now.getMonth() + 1}. 
${now.getDate()}. 
(${weekChoice(now.getDay())}).
${now.getHours()} h
${now.getMinutes()} m
${now.getSeconds()} s`

요일은 0부터(일요일) 6까지(토요일)로 표기 된다

const now = new Date();

// 함수를 만들어 주어 요일 표기를 해준다
const weekChoice = (day) => {
  const week = {
      1: "월",
      2: "화",
      3: "수",
      4: "목",
      5: "금",
      6: "토",
      0: "일",
  };
  for (let num in week) {
    if (Number(num) === Number(day)) {
      return week[num];
    }
  }
};


${weekChoice(now.getDay())}

profile
즐겁게 살자

0개의 댓글