I'd like to get a Date object which is 30 minutes later than another Date object. How to achieve it?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
This is like chaos's answer, but in one line:
Where Or as a reusable function, if you need to do this in multiple places:
|
|||||||||
|
|
|||||||||||||
|
|
|||
|
|
Maybe something like this? var d = new Date(); var v = new Date(); v.setMinutes(d.getMinutes()+30); |
|||||||
|
|
Just another option, which I wrote: It's overkill if this is all the date processing that you need, but it will do what you want. Supports date/time formatting, date math (add/subtract date parts), date compare, date parsing, etc. It's liberally open sourced. |
||||
|
|
protected by Jeff Atwood♦ May 21 '11 at 22:34
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.