body{
font-size:14px;
}
xxxxxxxxxx
const date=new Date();
document.write('const date=new Date()<br>');
document.write('1️⃣ date.getFullYear() : ',date.getFullYear());
document.write('<br>2️⃣ date.getMonth() : ',date.getMonth());
document.write('<br>getMonth()의 경우 월이 0부터 시작하므로 원하는 월의 값을 얻기위해서는 +1 해줘야 함')
document.write('<br>date.getMonth()+1 : ',date.getMonth() +1)
document.write('<br>3️⃣ date.getDate() : ',date.getDate());
document.write('<br>4️⃣date.getHours() : ',date.getHours());
document.write('<br>5️⃣date.getMinutes() : ',date.getMinutes());
document.write('<br>6️⃣date.getSeconds() : ',date.getSeconds());
document.write('<br>7️⃣date.getMilliseconds() : ',date.getMilliseconds());
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.