dates de format MomentJS

moment().format('MMMM Do YYYY, h:mm:ss a'); // May 9th 2022, 12:53:37 am
moment().format('dddd');                    // Monday
moment().format("MMM Do YY");               // May 9th 22
moment().format('YYYY [escaped] YYYY');     // 2022 escaped 2022
moment().format();                          // 2022-05-09T00:53:37+05:30
Mohammed Siddiqui