Skip to content

Instantly share code, notes, and snippets.

@shiftyp
Created November 28, 2020 17:38
Show Gist options
  • Save shiftyp/90e319634bc7fbdb7613a5774e5c8f17 to your computer and use it in GitHub Desktop.
Save shiftyp/90e319634bc7fbdb7613a5774e5c8f17 to your computer and use it in GitHub Desktop.
State!
let state = 1
const update = (value) => {
state = value
document.innerHTML = Array(value % 4).fill('Hello')
}
setInterval(() => update(Date.now()), 1000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment