Skip to content

Instantly share code, notes, and snippets.

@geopic
Last active July 26, 2017 20:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save geopic/c6495812783b95401ec55e92b9e83451 to your computer and use it in GitHub Desktop.
Save geopic/c6495812783b95401ec55e92b9e83451 to your computer and use it in GitHub Desktop.
Simple auto-updating clock in Javascript
function displayClock() {
setInterval(function(){ document.getElementById('clock').innerHTML = new Date().toLocaleTimeString(); }, 1000);
};
displayClock();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment