0
Q:

moment js

npm install moment --save   # npm
yarn add moment             # Yarn
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
5
npm install moment --save   # npm
yarn add moment             # Yarn
Install-Package Moment.js   # NuGet
spm install moment --save   # spm
meteor add momentjs:moment  # meteor
bower install moment --save # bower (deprecated)
2
moment().getDate();
1

New to Communities?

Join the community