javascript date + 7 days

var date = new Date();
date.setDate(date.getDate() + 7);

console.log(date);

And yes, this also works if date.getDate() + 7 is greater than the last day of the month. See MDN for more information.

Leave a Comment