Answers for "how to add date and month in js"

10

add month date now javascript

var myCurrentDate=new Date();
var myFutureDate=new Date(myCurrentDate);
    myFutureDate.setDate(myFutureDate.getDate()+ 8);//myFutureDate is now 8 days in the future
Posted by: Guest on July-25-2019
0

add month date now javascript

var newDate = new Date(date.setMonth(date.getMonth()+8));
Posted by: Guest on April-02-2022

Code answers related to "how to add date and month in js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language