momentjs add days months years code example
Example 1: moment js add day
var new_date = moment(startdate, "DD-MM-YYYY").add(5, 'days');
Example 2: moment add 6 months
moment().add(6, 'M');
var new_date = moment(startdate, "DD-MM-YYYY").add(5, 'days');
moment().add(6, 'M');