How to add days to a Date in JavaScript
In this post we will give you information about How to add days to a Date in JavaScript. Hear we will give you detail about How to add days to a Date in JavaScriptAnd how to use it also give you demo for it if it is necessary.
we are going to learn about how to add days to the current date in JavaScript using the new Date() constructor.
Adding days to current Date
- To add the days to a current date, first we need to access it inside the JavaScript using the new Date() constructor.
const current = new Date();
- Now, we can add the required number of days to a current date using the combination of setDate() and getDate() methods.
// it adds 2 days to a current datecurrent.setDate(current.getDate()+2);console.log(current.toDateString());/* If today's date is "Wed Sep 30 2020"then it returns after 2 days date "Fri Oct 02 2020" */
Full example:
const current = new Date();// it adds 2 days to a current datecurrent.setDate(current.getDate()+2);console.log(current.toDateString());
Definitions
- The setDate() method sets the day of the month to a Date object.
- The getDate() method gets the current day of the month (from 1 – 31).
Hope this code and post will helped you for implement How to add days to a Date in JavaScript. if you need any help or any feedback give it in comment section or you have good idea about this post you can give it comment section. Your comment will help us for help you more and improve us. we will give you this type of more interesting post in featured also so, For more interesting post and code Keep reading our blogs