Answers for "moment add days to current date"

6

moment js add day

var new_date = moment(startdate, "DD-MM-YYYY").add(5, 'days');
Posted by: Guest on May-15-2020
0

add days in mome

// to add 5 days to a date 

var new_date = moment().add(5, 'days');
Posted by: Guest on April-13-2021

Code answers related to "moment add days to current date"

Code answers related to "Javascript"

Browse Popular Code Answers by Language