It amazes me that Javascript's Date object does not implement an add function of any kind.

I simply want a function that can do this:

var now = Date.now();
var fourHoursLater = now.addHours(4);

function Date.prototype.addHours(h) {

   // how do I implement this?  

}

I would simply like some pointers in a direction.

  • Do I need to do string parsing?

  • Can I use setTime?

  • How about milliseconds?

Like this:

new Date(milliseconds + 4*3600*1000 /*4 hrs in ms*/)?

This seems really hackish though - and does it even work?

link|improve this question

feedback

5 Answers

up vote 42 down vote accepted
Date.prototype.addHours= function(h){
    this.setHours(this.getHours()+h);
    return this;
}

//test alert(new Date().addHours(4));

link|improve this answer
1  
Wow - easier than I thought. – Jeff Meatball Yang Jun 27 '09 at 18:13
I don't think this works---test it on something with hour 23, for example? Jason Harwig's answer is what came to mind for me. – Domenic Oct 25 '10 at 16:08
1  
It seems to work, even if it's 23:00. – Remy Nov 12 '10 at 20:38
feedback

JavaScript itself has terrible Date/Time API's. This is the only way to do it in pure JavaScript. I'd recommend using Datejs - as suggested by Nosredna - if you're doing a lot of date manipulation, though.

Date.prototype.addHours = function(h) {    
   this.setTime(this.getTime() + (h*60*60*1000)); 
   return this;   
}
link|improve this answer
feedback

It is probably better to make the addHours method immutable by returning a copy of the Date object rather than mutating its parameter.

Date.prototype.addHours= function(h){
    var copiedDate = new Date(this.getTime());
    copiedDate.setHours(copiedDate.getHours()+h);
    return copiedDate;
}

This way you can chain a bunch of method calls without worrying about state.

link|improve this answer
feedback

There is an add in the Datejs library.

And here are the JavaScript date methods. kennebec wisely mentioned getHours() and setHours();

link|improve this answer
feedback

Another way to handle this is to convert the date to unixtime (epoch), then add the equivalent in (milli)seconds, then convert it back. This way you can handle day and month transitions, like adding 4 hours to 21, which should result in the next day, 01:00.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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