How to add 1 day to the current date?
-
I have today's date
new Date (). ToISOString ()
. How to add 1 day to it to get "tomorrow"?JavaScript Benjamin Brewer, Dec 15, 2020 -
new Date(new Date().setDate(new Date().getDate() + 1)).toISOString();
Anonymous
1 Answers
Your Answer
To place the code, please use CodePen or similar tool. Thanks you!