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



Smartphone icons created by Freepik - Flaticon

JS Timing

A script on this page starts this clock:

// set the myTimer() interval to 1000 milliseconds or 1 second
setInterval(myTimer, 1000);

// defines myTimer() function
function myTimer() {
  const d = new Date();
  document.getElementById("demo").innerHTML = d.toLocaleTimeString();
}

There are 1000 milliseconds in one second.