Skip to content

Instantly share code, notes, and snippets.

@mayuresh-srivastava
Forked from tarun-nagpal-github/timeout_01.js
Created August 4, 2018 15:00
Show Gist options
  • Save mayuresh-srivastava/2200a64e899cf95ad757016bfbd38a75 to your computer and use it in GitHub Desktop.
Save mayuresh-srivastava/2200a64e899cf95ad757016bfbd38a75 to your computer and use it in GitHub Desktop.
TimeOutJs
console.log("Start");
setTimeout(function(){
console.log("I am Insdie the TimeOut");
}, 3000);
console.log("Ends");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment