Node.js examples for Date:Month
Get month name from Date
Date.prototype.getMonthName = function () { var months = ["jan", "feb", "mar", "apr", "may", "june", "july", "aug", "sept", "oct", "nov", "dec"]; return months[this.getMonth()]; };