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
You can use the momentjs http://momentjs.com/ Library.
var moment = require('moment'); foo = new moment(something).add(10, 'm').toDate();