moment js date now format code example
Example 1: moment add seconds
var travelTime = moment().add(642, 'seconds').format('hh:mm A');
var travelTime = moment().add(11, 'minutes').format('hh:mm A');
var travelTime = moment().add(2, 'hours').format('hh:mm A');
Example 2: moment format date
moment().format();
moment().format("dddd, MMMM Do YYYY, h:mm:ss a");
moment().format("ddd, hA");
Example 3: moment now format
var date = moment().format('MM/DD/YYYY');
Example 4: moment js print date
moment(testDate).format('MM/DD/YYYY');