Node.js examples for Date:Day
Get days between two dates
Date.prototype.daysBetween = function (otherDate) { return Math.abs(Math.floor((this - otherDate) / 86400000)) }