1moment.locale(); // en
2moment().format('LT'); // 8:41 PM
3moment().format('LTS'); // 8:41:43 PM
4moment().format('L'); // 04/11/2020
5moment().format('l'); // 4/11/2020
6moment().format('LL'); // April 11, 2020
7moment().format('ll'); // Apr 11, 2020
8moment().format('LLL'); // April 11, 2020 8:41 PM
9moment().format('lll'); // Apr 11, 2020 8:41 PM
10moment().format('LLLL'); // Saturday, April 11, 2020 8:41 PM
11moment().format('llll'); // Sat, Apr 11, 2020 8:41 PM
12 // undefined
1npm install moment --save # npm
2yarn add moment # Yarn
3Install-Package Moment.js # NuGet
4spm install moment --save # spm
5meteor add momentjs:moment # meteor
6bower install moment --save # bower (deprecated)
7