Answers for "add days in date moment"

2

moment add 30 days

moment().add(30, 'days');
Posted by: Guest on December-22-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 "Javascript"

Browse Popular Code Answers by Language