Skip to content

Instantly share code, notes, and snippets.

@jyotiarora2610
Created July 5, 2018 08:06
Show Gist options
  • Save jyotiarora2610/dda40d49aa9ed203bfc9b00d5680e217 to your computer and use it in GitHub Desktop.
Save jyotiarora2610/dda40d49aa9ed203bfc9b00d5680e217 to your computer and use it in GitHub Desktop.
function timer(interval) {
setTimeout(function() {
console.log('hello')
timer(interval)
}, interval)
}
timer(2000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment