no dia seguinte JavaScript
var tomorrow = new Date();
tomorrow.setDate(new Date().getDate()+1);
// Increase the date By 1(day)
Undefined
var tomorrow = new Date();
tomorrow.setDate(new Date().getDate()+1);
// Increase the date By 1(day)
// next day date javascript
var tomorrowDate = new Date().getDate()+1;
console.log(tomorrowDate);