How to add days to current DateTime using JavaScript. Does JavaScript 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 |
||||
|
|
My solution is:
this solution does not have problem with daylight saving nor it calculates correct day only in current month/year. Here you can add/sub time offsets for years, months, days etc. |
||||
|
|
|
Try
Using setDate() to add a date wont solve your problem, try adding some days to a Feb month, if you try to add new days to it, it wont result in what you expected. |
|||||||||||
|
|
These answers seem confusing to me, I prefer:
getTime() gives us milliseconds since 1970, and 86400000 is the number of milliseconds in a day. Hence, ms contains milliseconds for the desired date. Using the millisecond constructor gives the desired date object. |
|||||
|
|
The mozilla docs for setDate() don't indicate that it will handle end of month scenarios. See https://developer.mozilla.org/en-US/docs/JavaScript/Reference/Global_Objects/Date setDate()
That is why I use setTime() when I need to add days. |
|||
|
|
Just spent ages trying to work out what the deal was with the year not adding when following the lead examples below. If you want to just simply add n days to the date you have you are best to just go:
or the longwinded version
This today/tommorrow stuff is confusing. By setting the current date into your new date variable you will mess up the year value. if you work from the original date you won't. |
|||
|
|
|
I created these extensions last night: example:
|
|||||
|
|
Thanks Jason for your answer that works as expected, here is a mix from your code and the handy format of AnthonyWJones :
|
|||||
|
the same answer: How to add number of days to today's date?
|
|||||
|
