Adding hours to JavaScript Date object?

前端 未结 16 1331
一生所求
一生所求 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条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-11-22 09:40

    This is a easy way to get incremented or decremented data value.

    const date = new Date()
    const inc = 1000 * 60 * 60 // an hour
    const dec = (1000 * 60 * 60) * -1 // an hour
    
    const _date = new Date(date)
    return new Date( _date.getTime() + inc )
    return new Date( _date.getTime() + dec )
    

提交回复
热议问题