Answer the question
In order to leave comments, you need to log in
How to get the number of milliseconds until tomorrow?
How to get the number of milliseconds until tomorrow?
From now until 12 midnight, that is, until 00:00:00 the next day.
Answer the question
In order to leave comments, you need to log in
function getMSBeforeMidnight() {
const today = new Date();
const tomorrow = new Date(
today.getFullYear(),
today.getMonth(),
today.getDate() + 1,
0, 0, 0);
return tomorrow.getTime() - today.getTime();
}
I think you have enough logical thinking. Find the right one for you.
Read
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question