I need to increment a date value by one day in Javascript. For example, I have a date value 2010-09-11 and I need to store the next date in a Javascript variable.
How can I increment a date by 1 day?
|
I need to increment a date value by one day in Javascript. For example, I have a date value 2010-09-11 and I need to store the next date in a Javascript variable. How can I increment a date by 1 day? |
|||||
|
|
Two options for you: Raw JavaScript:
Edit: See also Jigar's answer and David's comment below: Or using MomentJS:
(Beware that Or using DateJS, but it hasn't been updated in a long time:
|
|||||||||||||||
|
|
|||||||||||
|
|
None of the examples in this answer seem to work with Daylight Saving Time adjustment days. On those days, the number of hours in a day are not 24 (they are 23 or 25, depending on if you are "springing forward" or "falling back".) The below AddDays javascript function accounts for daylight saving time:
Here are the tests I used to test the function:
|
|||
|
|
|
You first need to parse your string before following the other people's suggestion:
If you want it back in the same format again you will have to do that "manually":
But I suggest getting Date.js as mentioned in other replies, that will help you alot. |
||||
|
|