How to get Tomorrow date in JavaScript
In this tutorial, we are going to learn about how to get the tomorrow’s date using JavaScript.
Getting tomorrow’s date
-
First, we need to get the current date using
new Date()object -
We need to add a current date with
1using thesetDate()andgetDate()methods.
The
setDate()method helps us to set the day of the month, The getDate() method helps us to get the current day of the month.
Example:
const current = new Date();
// it gives tommorow date
current.setDate(current.getDate()+1);
console.log(current.toDateString());Note: If today is 31st December, JavaScript will figure out tomorrow is 1st January.


