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())}