Created
June 30, 2019 19:58
-
-
Save happymishra/6af692626092f3a575303a6c5ac58713 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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