Javascript Date getSimpleDate()

Description

Javascript Date getSimpleDate()

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



PreviousNext

Related