How to add days to a date using JavaScript?

To add days to a date in JavaScript, you can use the setDate() method of the Date object. Here's an example of how you can do it:

var myDate = new Date(); // create a new Date object myDate.setDate(myDate.getDate() + 3); // add 3 days to the current date console.log(myDate);

In this example, the setDate() method is used to set the date of the myDate object to the current date plus 3 days. You can change the number 3 to any other number to add more or less days.

The getDate() method is used to get the current date from the myDate object.