moment format date time code example
Example 1: moment hour minute
moment().format('HH:mm:ss')
Example 2: moment format
moment().format('MMMM Do YYYY, h:mm:ss a'); // September 30th 2020, 2:48:17 pm
moment().format('dddd'); // Wednesday
moment().format("MMM Do YY"); // Sep 30th 20
moment().format('YYYY [escaped] YYYY'); // 2020 escaped 2020
moment().format(); // 2020-09-30T14:48:17+02:00
Example 3: moment js date diff
var now = "04/09/2013 15:00:00";
var then = "02/09/2013 14:20:30";
var ms = moment(now,"DD/MM/YYYY HH:mm:ss").diff(moment(then,"DD/MM/YYYY HH:mm:ss"));
var d = moment.duration(ms);
var s = d.format("hh:mm:ss");
// outputs: "48:39:30"
Example 4: moment format date
moment.locale(); // en
moment().format('LT'); // 12:25 PM
moment().format('LTS'); // 12:25:27 PM
moment().format('L'); // 03/26/2021
moment().format('l'); // 3/26/2021
moment().format('LL'); // March 26, 2021
moment().format('ll'); // Mar 26, 2021
moment().format('LLL'); // March 26, 2021 12:25 PM
moment().format('lll'); // Mar 26, 2021 12:25 PM
moment().format('LLLL'); // Friday, March 26, 2021 12:25 PM
moment().format('llll'); // Fri, Mar 26, 2021 12:25 PM
Example 5: moment add seconds
var travelTime = moment().add(642, 'seconds').format('hh:mm A');// it will add 642 seconds in the current time and will give time in 03:35 PM format
var travelTime = moment().add(11, 'minutes').format('hh:mm A');// it will add 11 mins in the current time and will give time in 03:35 PM format; can use m or minutes
var travelTime = moment().add(2, 'hours').format('hh:mm A');// it will add 2 hours in the current time and will give time in 03:35 PM format
Example 6: format a date moment
moment(testDate).format('MM/DD/YYYY');