Adding hours to JavaScript Date object?

前端 未结 16 1197
一生所求
一生所求 2020-11-22 09:00

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         


        
16条回答
  •  -上瘾入骨i
    2020-11-22 09:55

    JavaScript itself has terrible Date/Time API's. Nonetheless, you can do this in pure JavaScript:

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

提交回复
热议问题