moment add days code example
Example 1: moment subtract days
var startdate = moment();
startdate = startdate.subtract(1, "days");
startdate = startdate.format("DD-MM-YYYY");
Example 2: moment add 30 days
moment().add(30, 'days');
Example 3: moment js add day
var new_date = moment(startdate, "DD-MM-YYYY").add(5, 'days');
Example 4: 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 5: moment add 6 months
moment().add(6, 'M');
Example 6: add days in mome
// to add 5 days to a date
var new_date = moment().add(5, 'days');