xxxxxxxxxx
moment().format('YYYY-MM-DD'); // Fecha de hoy ejemplo: 2023-07-25
moment().format('DD-MM-YYYY') // // Fecha de hoy ejemplo: 25-07-2023
xxxxxxxxxx
moment().format(); // "2019-08-12T17:52:17-05:00" (ISO 8601, no fractional seconds)
moment().format("dddd, MMMM Do YYYY, h:mm:ss a"); // "Monday, August 12th 2019, 5:52:00 pm"
moment().format("ddd, hA"); // "Mon, 5PM"
xxxxxxxxxx
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
Moment js date formate
xxxxxxxxxx
moment().format('MMMM Do YYYY, h:mm:ss a'); // February 13th 2021, 1:49:03 am
moment().format('dddd'); // Saturday
moment().format("MMM Do YY"); // Feb 13th 21
moment().format('YYYY [escaped] YYYY'); // 2021 escaped 2021
moment().format(); // 2021-02-13T01:49:29+01:00
moment("20111031", "YYYYMMDD").fromNow(); // 9 years ago
moment("20120620", "YYYYMMDD").fromNow(); // 9 years ago
moment().startOf('day').fromNow(); // 2 hours ago
moment().endOf('day').fromNow(); // in a day
moment().startOf('hour').fromNow(); // an hour ago
moment().subtract(10, 'days').calendar(); // 02/03/2021
moment().subtract(6, 'days').calendar(); // Last Sunday at 1:50 AM
moment().subtract(3, 'days').calendar(); // Last Wednesday at 1:50 AM
moment().subtract(1, 'days').calendar(); // Yesterday at 1:50 AM
moment().calendar(); // Today at 1:50 AM
moment().add(1, 'days').calendar(); // Tomorrow at 1:50 AM
moment().add(3, 'days').calendar(); // Tuesday at 1:50 AM
moment().add(10, 'days').calendar(); // 02/23/2021
moment.locale(); // en
moment().format('LT'); // 1:50 AM
moment().format('LTS'); // 1:50:49 AM
moment().format('L'); // 02/13/2021
moment().format('l'); // 2/13/2021
moment().format('LL'); // February 13, 2021
moment().format('ll'); // Feb 13, 2021
moment().format('LLL'); // February 13, 2021 1:50 AM
moment().format('lll'); // Feb 13, 2021 1:50 AM
moment().format('LLLL'); // Saturday, February 13, 2021 1:50 AM
moment().format('llll');
xxxxxxxxxx
const moment = require('moment');
// Get current datetime
const now = moment();
// Format datetime as 'YYYY-MM-DD HH:mm:ss'
const formattedDatetime = now.format('YYYY-MM-DD HH:mm:ss');
console.log(formattedDatetime); // Output: e.g. '2022-01-01 12:30:45'
xxxxxxxxxx
moment().format('MMMM Do YYYY, h:mm:ss a'); // March 26th 2021, 12:25:33 pm
moment().format('dddd'); // Friday
moment().format("MMM Do YY"); // Mar 26th 21
moment().format('YYYY [escaped] YYYY'); // 2021 escaped 2021
moment().format(); // 2021-03-26T12:25:33-04:00
xxxxxxxxxx
moment().format('MMMM Do YYYY, h:mm:ss a'); // December 23rd 2021, 11:12:44 pm
moment().format('dddd'); // Thursday
moment().format("MMM Do YY"); // Dec 23rd 21
moment().format('YYYY [escaped] YYYY'); // 2021 escaped 2021
moment().format();
xxxxxxxxxx
moment().format('MMMM Do YYYY, h:mm:ss a'); // Fevral 6 2023, 6:51:54 pm
moment().format('dddd'); // Dushanba
moment().format("MMM Do YY"); // Fev 6 23
moment().format('YYYY [escaped] YYYY'); // 2023 escaped 2023
moment().format(); // 2023-02-06T18:51:54+05:00
xxxxxxxxxx
moment.tz('2018-07-17 19:00:00', 'YYYY-MM-DD HH:mm:ss', 'UTC').format() // "2018-07-17T19:00:00Z"
moment('2018-07-17 19:00:00', 'YYYY-MM-DD HH:mm:ss').tz('UTC').format() // "2018-07-18T00:00:00Z"
xxxxxxxxxx
moment().format('MMMM Do YYYY'); // April 14th 2021, 5:38:13 pm
moment().format('dddd'); // Wednesday
moment().format("MMM Do YY"); // Apr 14th 21
moment().format('YYYY [escaped] YYYY'); // 2021 escaped 2021
moment().format(); // 2021-04-14T17:38:13+06:00