<aside> ❓ moment.js (moment-timezone 버전) https://momentjs.com/timezone/docs/#/zone-object/

</aside>

Timezone 구하기

// Asia/Seoul, America/Los_Angeles 등등
Intl.DateTimeFormat().resolvedOptions().timeZone
// KST (현재 위치)
moment().tz(Intl.DateTimeFormat().resolvedOptions().timeZone).zoneAbbr();
// PDT
moment().tz('America/Los_Angeles').zoneAbbr();

날짜, 시각 구하기

// 2021-10-13T00:29:22+09:00
moment().format();

// 하나씩 구할 때
moment().format('Y');
moment().format('M');
moment().format('D');
moment().format('h');
moment().format('m');
moment().format('s');

// 형식 지정 가능
moment().format('h:m:s');

경과 시간 (1970년 부터)

1970년 1월 1일 00:00:00 UTC로부터의 경과시간을 밀리초 단위로 반환

// 1634052614971
moment().valueOf()  // == date의 getTime()