Node.js examples for Date:Hour
Get hours between two dates
Date.prototype.hoursBetween = function (otherDate) { return Math.abs(Math.floor((this - otherDate) / 3600000)) }