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.
Like this:
new Date(milliseconds + 4*3600*1000 /*4 hrs in ms*/)?
This seems really hackish though - and does it even work?
Question&Answers:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…