vote up 3 vote down star

How to add days to current DateTime using Java Script. Does Java Script have a built in function like .Net AddDay?

flag

3 Answers

vote up 0 vote down check

i use

var today = new Date();
var tomorrow = new Date();
tomorrow.setDate(today.getDate()+1);

This will deal with end of months so adding 32 days will work.

HTH

link|flag
vote up 6 vote down
var today = new Date();
var tomorrow = new Date();
tomorrow.setDate(today.getDate()+1);

Be careful, because this can be tricky. When setting "tomorrow", it only works because it's current value matches the year and month for "today". However, setting to a date number like "32" normally will still work just fine to move it to the next month.

link|flag
The accepted answer to this question looks strangely familiar. Curious. I guess I'll put my +1 here. – Tomalak Feb 19 '09 at 0:59
I did edit some, but you can see that this version still predated his answer. Ah, well. – Joel Coehoorn Feb 19 '09 at 1:19
vote up 5 vote down

You can create one with:-

 Date.prototype.addDays = function(days)
 {
     var dat = new Date(this.valueOf())
     dat.setDate(dat.getDate() + days);
     return dat;
 }

var dat = new Date()


alert(dat.addDays(5))

The problem with using setDate directly is that it's mutator and that sort of thing is best avoided. ECMA saw fit to treat Date as a mutable class rather than an immutable structure.

link|flag
FWIW, the Java Date class works in a similar fashion. Apparently, objects were expensive back in the '90s... – Shog9 Feb 19 '09 at 0:15

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.