How to add days to current DateTime using Java Script. Does Java Script have a built in function like .Net AddDay?
|
|
i use
This will deal with end of months so adding 32 days will work. HTH |
||
|
|
|
|
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. |
||||
|
|
|
You can create one with:-
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. |
||
|
