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