Created
June 30, 2019 19:52
-
-
Save happymishra/b4668b60b87d56404f731de13a1e3d5a 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 100 milliseconds"); | |
} | |
var timerId = setTimeout(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