Answers for "to add 30 or 31 days to a date javascript"

1

javascript current date add 30 days

var future = new Date();
future.setDate(future.getDate() + 30);
Posted by: Guest on April-26-2020

Code answers related to "to add 30 or 31 days to a date javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language