Node.js examples for Date:Day
Is Date today
Date.prototype.isToday = function () { var date = new Date return date.getFullYear() == this.getFullYear() && date.getMonth() == this.getMonth() && date.getDate() == this.getDate() }