현재 시간
let today = new Date()
년 / 월 / 일 따로 가져오기
let today = new Date()
let year = today.getFullYear();
let month = today.getMonth();
// 0 붙여서 => let month = ('0' + (today.getMonth() + 1)).slice(-2);
let day = today.getDate();
// 0 붙여서 => let day = ('0' + (today.getDate())).slice(-2);
let dateString = year + '-' + month + '-' + day;
console.log(dateString)
- 한자리수의 경우 앞에 0 넣어주어서 포매팅
- getMonth의 경우는 0부터 시작함에 유의 !!
Array.prototype.slice
- (begin, end) : 시작점 ~ 끝점까지 추출한 배열 리턴
- (begin) : 시작점 ~ 끝까지 추출한 배열 리턴
- begin이나 end에는 음수 인덱스가 올 수 있음(파이썬과 같음)
- end는 포함되지 않음