var d = new Date();
document.getElementById("demo").innerHTML = d.getTime(); // 1618280425527
=====The getFullYear() Method=====
''%%getFullYear()%%'' 메서드는 날짜의 연도를 4 자리 숫자로 반환합니다.\\
var d = new Date();
document.getElementById("demo").innerHTML = d.getFullYear(); // 2021
=====The getMonth() Method=====
''%%getMonth()%%'' 메서드는 날짜의 월을 숫자 (0-11)로 반환합니다.\\
JavaScript getMonth()
The getMonth() Method returns the month of a date as a number from 0 to 11.
To get the correct month, you must add 1:
\\
%%JavaScript%%에서 첫 번째 달 (1 월)은 월 번호 0이므로 12 월은 월 번호 11을 반환합니다.\\
\\
이름 배열을 사용하고, ''%%getMonth()%%''를 사용하여 월을 이름으로 반환할 수 있습니다.\\
JavaScript getMonth()
The getMonth() method returns the month as a number:
You can use an array to display the name of the month: