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