Node.js examples for Date:Second
Add milliseconds to a Date
Date.prototype.addMilliseconds = function(count) { this.setMilliseconds(this.getMilliseconds() + count); };