var dateObj = new Date();
var month = dateObj.getMonth() + 1; //months from 1-12
var day = dateObj.getDate();
var year = dateObj.getFullYear();
newdate = year + "/" + month + "/" + day;
- getUTCMonth(), getUTCDate(), getUTCFullYear() 등과 같이 UTC가 포함된 것은 UTC기준 Date
- 월(month)은 0부터 시작 (1월은 0, 2월은 1)
- getDay()는 요일(0-6) getDate()는 날짜(1-31)
- getYear()은 현재 연도에서 1900 값을 뺀 값 반환 (현재는 Deprecated)
'ETC > 알고리즘 & 문법' 카테고리의 다른 글
[TypeScript] 제네릭을 이용한 객체 배열 Group by (0) | 2022.11.24 |
---|---|
[JavaScript] ES6 Map() (0) | 2022.11.16 |
[JavaScript] Convert ES6 Iterable to Array (0) | 2022.11.16 |
[FP] 순수 함수와 비 순수 함수 (0) | 2022.10.11 |
[TypeScript] Generics (0) | 2022.07.13 |