moment install npm code example
Example 1: npm install moment
npm i moment --save
Example 2: npm momen
npm i moment
Example 3: npm moment
npm install moment
Example 4: moment js npm
moment.locale(); // en
moment().format('LT'); // 8:41 PM
moment().format('LTS'); // 8:41:43 PM
moment().format('L'); // 04/11/2020
moment().format('l'); // 4/11/2020
moment().format('LL'); // April 11, 2020
moment().format('ll'); // Apr 11, 2020
moment().format('LLL'); // April 11, 2020 8:41 PM
moment().format('lll'); // Apr 11, 2020 8:41 PM
moment().format('LLLL'); // Saturday, April 11, 2020 8:41 PM
moment().format('llll'); // Sat, Apr 11, 2020 8:41 PM
// undefined
Example 5: npm moment
moment().format('MMMM Do YYYY, h:mm:ss a'); // March 5th 2021, 11:30:49 am
moment().format('dddd'); // Friday
moment().format("MMM Do YY"); // Mar 5th 21
moment().format('YYYY [escaped] YYYY'); // 2021 escaped 2021
moment().format('YYYY MM DD'); // 2021-03-05T11:30:49+05:30
Example 6: moment.js format
moment("20111031", "YYYYMMDD").fromNow(); // 9 years ago
moment("20120620", "YYYYMMDD").fromNow(); // 8 years ago
moment().startOf('day').fromNow(); // 13 hours ago
moment().endOf('day').fromNow(); // in 11 hours
moment().startOf('hour').fromNow(); // 4 minutes ago