Node.js examples for Date:Date Format
Convert today's Date to DD/MM/YYYY
Date.prototype.today = function() { return ((this.getDate() < 10) ? "0" : "") + this.getDate() + "/" + (((this.getMonth() + 1) < 10) ? "0" : "") + (this.getMonth() + 1) + "/" + this.getFullYear(); };