Front/JS & jQuery

[js] moment().format() 와 moment().toDate() 의 차이

오선지♬ 2025. 3. 29. 11:13
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
반응형