How to add days to current Date using JavaScript? Does JavaScript have a built in function like .NET's AddDay()?
The setDate() method can be used to add days to a date.
Adding days to current Date 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.
var today = new Date(); var tomorrow = new Date(); tomorrow. setDate(today. getDate()+1);
You can create one with:-
Date.prototype.addDays = function(days) {     var date = new Date(this.valueOf());     date.setDate(date.getDate() + days);     return date; }  var date = new Date();  console.log(date.addDays(5));  This takes care of automatically incrementing the month if necessary. For example:
8/31 + 1 day will become 9/1.
The problem with using setDate directly is that it's a mutator and that sort of thing is best avoided. ECMA saw fit to treat Date as a mutable class rather than an immutable structure.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With