Ejemplo 1: js fecha de mañana
let today = new Date();
let tomorrow = new Date();
tomorrow.setDate(today.getDate() + 1);
console.log('Today: ' + today);
console.log('Tomorrow: ' + tomorrow);
Ejemplo 2: cómo obtener la fecha de mañana en javascript
var currentDate = new Date(new Date().getTime() + 24 * 60 * 60 * 1000);
var day = currentDate.getDate()
var month = currentDate.getMonth() + 1
var year = currentDate.getFullYear()
document.write("<b>" + day + "https://foroayuda.es/" + month + "https://foroayuda.es/" + year + "</b>")
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)