1npm install moment --save #npm
2
3const moment = require('moment'); //require
4
5moment().format('MMMM Do YYYY, h:mm:ss a'); // February 13th 2021, 1:49:03 am
6moment().format('dddd'); // Saturday
7moment().format("MMM Do YY"); // Feb 13th 21
8moment().format('YYYY [escaped] YYYY'); // 2021 escaped 2021
9moment().format(); // 2021-02-13T01:49:29+01:00
10moment("20111031", "YYYYMMDD").fromNow(); // 9 years ago
11moment("20120620", "YYYYMMDD").fromNow(); // 9 years ago
12moment().startOf('day').fromNow(); // 2 hours ago
13moment().endOf('day').fromNow(); // in a day
14moment().startOf('hour').fromNow(); // an hour ago
15moment().subtract(10, 'days').calendar(); // 02/03/2021
16moment().subtract(6, 'days').calendar(); // Last Sunday at 1:50 AM
17moment().subtract(3, 'days').calendar(); // Last Wednesday at 1:50 AM
18moment().subtract(1, 'days').calendar(); // Yesterday at 1:50 AM
19moment().calendar(); // Today at 1:50 AM
20moment().add(1, 'days').calendar(); // Tomorrow at 1:50 AM
21moment().add(3, 'days').calendar(); // Tuesday at 1:50 AM
22moment().add(10, 'days').calendar(); // 02/23/2021
23moment.locale(); // en
24moment().format('LT'); // 1:50 AM
25moment().format('LTS'); // 1:50:49 AM
26moment().format('L'); // 02/13/2021
27moment().format('l'); // 2/13/2021
28moment().format('LL'); // February 13, 2021
29moment().format('ll'); // Feb 13, 2021
30moment().format('LLL'); // February 13, 2021 1:50 AM
31moment().format('lll'); // Feb 13, 2021 1:50 AM
32moment().format('LLLL'); // Saturday, February 13, 2021 1:50 AM
33moment().format('llll'); // Sat, Feb 13, 2021 1:51 AM
1moment().format(); // "2019-08-12T17:52:17-05:00" (ISO 8601, no fractional seconds)
2moment().format("dddd, MMMM Do YYYY, h:mm:ss a"); // "Monday, August 12th 2019, 5:52:00 pm"
3moment().format("ddd, hA"); // "Mon, 5PM"
1npm install moment --save # npm
2yarn add moment # Yarn
3moment.locale(); // en
4moment().format('LT'); // 8:49 AM
5moment().format('LTS'); // 8:49:26 AM
6moment().format('L'); // 10/13/2020
7moment().format('l'); // 10/13/2020
8moment().format('LL'); // October 13, 2020
9moment().format('ll'); // Oct 13, 2020
10moment().format('LLL'); // October 13, 2020 8:49 AM
11moment().format('lll'); // Oct 13, 2020 8:49 AM
12moment().format('LLLL'); // Tuesday, October 13, 2020 8:49 AM
13moment().format('llll'); // Tue, Oct 13, 2020 8:49 AM
14