Skip to content

Instantly share code, notes, and snippets.

@happymishra
Created June 30, 2019 19:58
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 happymishra/6af692626092f3a575303a6c5ac58713 to your computer and use it in GitHub Desktop.
Save happymishra/6af692626092f3a575303a6c5ac58713 to your computer and use it in GitHub Desktop.
function delayFuncExec () {
console.log("I will be called after every 100 milliseconds");
}
var timerId = setInterval(delayFuncExec, 100)
console.log("Timer Id: " + timerId)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment