Node.js examples for Date:Date Format
Format date as MMDD
Date.prototype.formatMMDD = function () { return this.getMonth() + 1 + '/' + this.getDate(); };