Skip to content

Instantly share code, notes, and snippets.

@milankinen
Created December 10, 2015 20:08
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 milankinen/df587c7238c1b7f7fea2 to your computer and use it in GitHub Desktop.
Save milankinen/df587c7238c1b7f7fea2 to your computer and use it in GitHub Desktop.
tiny-cycle-3.js
let i = 0
let main = () => document.querySelector("#app").innerHTML = `Seconds elapsed ${i++}`
main() && setInterval(main, 1000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment