Javascript Date shortFormat()
Date.prototype.shortFormat = function() { return (this.getMonth() + 1) + "/" + this.getDate() + "/" + this.getFullYear(); };
// Custom Date function to display a date in MM/DD/YYYY format Date.prototype.shortFormat = function () { return (this.getMonth() + 1) + "/" + this.getDate() + "/" + this.getFullYear(); }
Date.prototype.shortFormat = function() { return this.getDate() + "/" + (this.getMonth() + 1) + "/" + this.getFullYear(); }
Date.prototype.shortFormat = function() { return (this.getMonth() + 1) + "/" + this.getDate() + "/" + this.getFullYear(); }