Node.js examples for Date:Month
Get days in Month
Date.prototype.daysInMonth = function(){ return 32 - new Date(this.getFullYear(), this.getMonth(), 32).getDate(); };