Hola:
Basándome en el siguiente mensaje:
Fecha + Hora, se me ocurrió:
Código:
Date.prototype.toString = function() {
return this.getDate() + "/" + (this.getMonth() + 1) + "/" + this.getFullYear();
}
Date.prototype.siguienteYear = function() {
return this.getDate() + "/" + (this.getMonth() + 1) + "/" + (parseInt(this.getFullYear()) + 1);
}
Saludos