요일

const today = new Date();
const day = today.getDay();
// 일(0)~토(6)순으로 화요일의경우 2

 

const today = new Date();
const date = today.getDate();

 

const today = new Date();
const month = today.getMonth();
// 월의 경우 실제 월보다 -1된 값을 리턴한다 
//ex) 1월의 경우 0, 10월의경우 9를 리턴함. 31일 여부를 체크할 때 등 주의!!

 

연도

const today = new Date();
const day = today.getFullYear();
// getYear는 웹 표준에서 사라졌으므로 getFullYear사용

 

 

+ Recent posts