This site is mobile accessible. Press the "Tap Here" button to use a smaller font-size.

Smartphone icons created by Freepik - Flaticon

JavaScript Dates

Using new Date()

86400000 milliseconds from January 01 1970 UTC is:

One day (24 hours) is 86,400,000 milliseconds.

const d = new Date(86400000);
document.getElementById("demo").innerHTML = d;