js date of tomorrow

JavaScript
let today = new Date();
let tomorrow = new Date();

tomorrow.setDate(today.getDate() + 1);

console.log('Today: ' + today);
console.log('Tomorrow: ' + tomorrow);
Source

Also in JavaScript: