moment().format()์ ๋ฌธ์์ด์ ๋ฐํํ์ง๋ง,moment().toDate()๋ Date ๊ฐ์ฒด๋ฅผ ๋ฐํํฉ๋๋ค.let formattedString = moment().format('YYYY-MM-DD HH:mm'); // ๋ฌธ์์ดlet jsDate = moment().toDate(); // JavaScript Date ๊ฐ์ฒดconsole.log(typeof formattedString); // stringconsole.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 ๊ฐ์ฒด