moment date start + 1 day code example
Example 1: moment js add day
var new_date = moment(startdate, "DD-MM-YYYY").add(5, 'days');
Example 2: momentjs docs
npm install moment
var new_date = moment(startdate, "DD-MM-YYYY").add(5, 'days');
npm install moment