Skip to content

Instantly share code, notes, and snippets.

@happymishra
Created June 30, 2019 19:52
Show Gist options
  • Save happymishra/b4668b60b87d56404f731de13a1e3d5a to your computer and use it in GitHub Desktop.
Save happymishra/b4668b60b87d56404f731de13a1e3d5a to your computer and use it in GitHub Desktop.
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