How to Get Tomorrow’s date in JavaScript

Tomorrow’s date in JavaScript- The setDate() method sets the day of the Date object relative to the beginning of the currently set month.

Code to to Get Tomorrow’s date in JavaScript-

let today = new Date();
let tomorrow = new Date();
tomorrow.setDate(today.getDate() + 1);
console.log('Today: ' + today);
console.log('Tomorrow: ' + tomorrow);