Node.js examples for Date:Day
Get day certain days ago
define(function () { Number.prototype.daysAgo = function () { var d = new Date d.setDate(d.getDate() - this)/*from w w w. ja v a2 s.co m*/ return d } })