momentjs set day of the month code example
Example 1: moment js add day
var new_date = moment(startdate, "DD-MM-YYYY").add(5, 'days');
Example 2: moment get month day
//The correct function to use is .date():
date.date() === 25;
var new_date = moment(startdate, "DD-MM-YYYY").add(5, 'days');
//The correct function to use is .date():
date.date() === 25;