728x90
반응형
moment().format()은 문자열을 반환하지만,
moment().toDate()는 Date 객체를 반환합니다.
let formattedString = moment().format('YYYY-MM-DD HH:mm'); // 문자열
let jsDate = moment().toDate(); // JavaScript Date 객체
console.log(typeof formattedString); // string
console.log(typeof jsDate); // object
📌 차이점
메서드 | 반환 값 | 설명 |
moment().format('YYYY-MM-DD') | "2024-04-01" | 문자열(String) |
moment().toDate() | Mon Apr 01 2024 12:34:56 GMT+0900 (KST) | Date 객체 |
728x90
반응형
'Front > JS & jQuery' 카테고리의 다른 글
[jQuery] Multiselect Plugin selectAll (전체선택) (0) | 2025.04.02 |
---|---|
[js] closest() 주의사항 - name 속성 보다는 id나 class 사용하기 (0) | 2025.03.30 |
[js] moment().toDate() (0) | 2025.03.28 |
[js] datetimepicker 날짜 동적 선택 (0) | 2025.03.27 |
java.sql.SQLDataException: ORA-01861: 리터럴이 형식 문자열과 일치하지 않음 (0) | 2025.03.18 |