반응형
# 현재 날짜, 5일 전, 5일 후
const nowDate = new Date();
const before5days = new Date(new Date().getTime() - 5 * 86400000);
const add5days = new Date(new Date().getTime() + 5 * 86400000);
2018년 4월 2일
nowDate.getFullYear() ==> 2018
nowDate.getMonth() ==> 3(0 ~ 11)
nowDate.getDate() ==> 2(1 ~ 31)
참고
https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Global_Objects/Date/getDate
kendo-datepicker
format = "y-MM-dd" ==> 2018-04-02 로 출력
date set ==> this.toDate = new Date(nowDate.getFullYear(), nowDate.getMonth(), nowDate.getDate());
반응형
'엉터리 개발 이야기' 카테고리의 다른 글
[Linux] 환경변수(PATH) 확인하기 (0) | 2018.04.03 |
---|---|
[CSS] 특정 Class 만 제외 시키기 (0) | 2018.04.03 |
[MySQL] Date 관련... (0) | 2018.03.30 |
[PyCharm] Push failed: Failed with error: Could not read from remote repository. 해결 (0) | 2018.03.28 |
[ORM][Sequelize] include 모델에 order by 하기 (0) | 2018.03.21 |