Javascript Date Format_MDY()

Description

Javascript Date Format_MDY()

Date.prototype.Format_MDY = function () {
     return  this.getMonth() + 1 + "/" + this.getDate() + "/" + this.getFullYear(); 
};



PreviousNext

Related