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

Smartphone icons created by Freepik - Flaticon

JavaScript Dates

The getTime() Method

Return the number of milliseconds since midnight January 1, 1970:

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