moment package javascript code example
Example 1: momentjs
npm install moment --save
yarn add moment
moment.locale(); // en
moment().format('LT'); // 8:49 AM
moment().format('LTS'); // 8:49:26 AM
moment().format('L'); // 10/13/2020
moment().format('l'); // 10/13/2020
moment().format('LL'); // October 13, 2020
moment().format('ll'); // Oct 13, 2020
moment().format('LLL'); // October 13, 2020 8:49 AM
moment().format('lll'); // Oct 13, 2020 8:49 AM
moment().format('LLLL'); // Tuesday, October 13, 2020 8:49 AM
moment().format('llll'); // Tue, Oct 13, 2020 8:49 AM
Example 2: moment.js format
moment().format('MMMM Do YYYY, h:mm:ss a'); // December 4th 2020, 1:04:29 pm
moment().format('dddd'); // Friday
moment().format("MMM Do YY"); // Dec 4th 20
moment().format('YYYY [escaped] YYYY'); // 2020 escaped 2020
moment().format(); // 2020-12-04T13:04:29-05:00
Example 3: momentjs
npm install moment --save
yarn add moment
Install-Package Moment.js
spm install moment --save
meteor add momentjs:moment
bower install moment --save