코드노트

현재년도 나타내기 js 본문

Code note

현재년도 나타내기 js

코드노트 2022. 5. 20. 15:48

 

const thisYear = document.querySelector('.this-year');
thisYear.textContent = new Date().getFullYear();

생성자 함수 new Date()

현재날짜를 생성 .getFullYear();

this-year 클래스에 변환