반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- IOS
- xcode
- build
- MachineLearning
- PYTHON
- TensorFlow
- qunit
- 오블완
- 네트워크
- 맥
- 개발
- vsCode
- 리눅스
- Chrome
- jest
- VirtualBox
- webpack
- 티스토리챌린지
- node
- 센토스
- centos
- androidstudio
- Android
- react
- MAC
- linux
- ReactNative
- localserver
- unittest
Archives
- Today
- Total
로메오의 블로그
[moment] 날짜계산 본문
반응형
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.29.1/moment-with-locales.min.js"></script>
// 5일 후 날짜 구하기
moment().add(5, 'd').format('YYYY MM DD');
// 1달 7일후의 날짜 구하기
moment().add(5, 'd').add(1, 'M').format('YYYY MM DD');
// 5일전의 날짜 구하기
moment().subtract(7, 'd').format('YYYY MM DD');
// 2주전의 날짜 구하기
moment().subtract(2, 'w').format('YYYY MM DD');
// 날짜 차이
var date1 = moment([2022, 01, 01]);
var date2 = moment([2023, 01, 01]);
date2.diff(date1, 'days');
// 이번달 말일 구하기
moment().endOf('month').format('YYYY MM DD');
// from now
var date1 = moment().subtract(5, 'h')
moment(date1).fromNow()
// -> '5 hours ago'
moment.locale('ko')
var date1 = moment().subtract(5, 'h')
moment(date1).fromNow()
// -> '5시간 전'
반응형
'Frontend > ETC' 카테고리의 다른 글
[javascript] pushState 주소 변경하기 (0) | 2022.03.04 |
---|---|
javascript 숫자 콤마 찍기 currency (0) | 2022.03.04 |
[console for Windows] Cmder (0) | 2022.01.25 |
WebDAV 설정 - Synology NAS - KT공유기 설정 - Documents (0) | 2021.12.04 |
lodash 자주 사용하는 메서드 정리 (0) | 2021.11.16 |
Comments