Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'd like to get a Date object which is 30 minutes later than another Date object. How to achieve it?

share|improve this question
I built a little calendar popup script in js, its on Github, maybe look through the code to see how the date object is interected with. Also, check Javascript Kit as its an awesome js reference, especially for the date object. – Christian Jul 29 '09 at 3:44
See also stackoverflow.com/questions/674721/… – David Freitas May 21 '11 at 15:12

6 Answers

This is like chaos's answer, but in one line:

var newDateObj = new Date(oldDateObj.getTime() + diff*60000);

Where diff is the difference in minutes you want from oldDateObj's time. It can even be negative.

Or as a reusable function, if you need to do this in multiple places:

function addMinutes(date, minutes) {
    return new Date(date.getTime() + minutes*60000);
}
share|improve this answer
2  
This is very powerful; It works for any amount of minutes even if number was negative. – Wahid Bitar Feb 24 '11 at 16:48
really clean and nice solutions, would love to upvote this twice. – Tim May 6 '11 at 10:29
thanks for sharing this, it seems like way better than setTime/Minutes. It also seems more "functional" :) – José F. Romaniello Apr 11 '12 at 13:06
var d1 = new Date (),
    d2 = new Date ( d1 );
d2.setMinutes ( d1.getMinutes() + 30 );
alert ( d2 );
share|improve this answer
37  
@Jamie: You don't need two Date objects. var d = new Date(); d.setMinutes(d.getMinutes() + 30); – Grant Wagner Jul 29 '09 at 21:28
8  
@Grant: I assumed d2 = "I'd like to get a Date object" and d1 = "to another Date object" – Jamie Jul 30 '09 at 17:53
7  
@CKeene, setMinutes & getMinutes are part of plain old Javascript (though datejs does provide a whole bunch of other stuff). – s29 Feb 15 '12 at 5:19
var newDateObj = new Date();
newDateObj.setTime(oldDateObj.getTime() + (30 * 60 * 1000));
share|improve this answer
Note that setTime returns a numeric millisecond timestamp, not a date object. (Don’t think you can do a one-liner.) – Alan H. Dec 24 '11 at 0:33
var now = new Date();
now.setMinutes(now.getMinutes() + 30);
share|improve this answer

Maybe something like this?


var d = new Date();
var v = new Date();
v.setMinutes(d.getMinutes()+30);

share|improve this answer
1  
@Chacha102: You don't need two Date objects. var d = new Date(); d.setMinutes(d.getMinutes() + 30); – Grant Wagner Jul 29 '09 at 21:29
He wanted two date objects. Read the Question. One Date object which is 30 minutes ahead of another date object. – Chacha102 Jul 29 '09 at 21:38

Just another option, which I wrote:

DP_DateExtensions Library

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.

share|improve this answer

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.

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