momentjs subtract code example
Example 1: moment subtract days
var startdate = moment();
startdate = startdate.subtract(1, "days");
startdate = startdate.format("DD-MM-YYYY");
Example 2: moment js subtract years
let min_date = moment().subtract(18, 'years');
Example 3: format a date moment
moment(testDate).format('MM/DD/YYYY');
Example 4: momentjs utcoffset
moment().utcOffset() // will output 60 (for example)
Example 5: moment.set
moment().set('year', 2013);
moment().set('month', 3); // April
moment().set('date', 1);
moment().set('hour', 13);
moment().set('minute', 20);
moment().set('second', 30);
moment().set('millisecond', 123);
moment().set({'year': 2013, 'month': 3});