Skip to content

Instantly share code, notes, and snippets.

@rpf5573
Created October 20, 2018 02:40
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 rpf5573/e1cf30e2c75fc8965730f72212a4f840 to your computer and use it in GitHub Desktop.
Save rpf5573/e1cf30e2c75fc8965730f72212a4f840 to your computer and use it in GitHub Desktop.
cb order
//index.js
setTimeout(function(){
console.log("Timeout");
}, 0);
setImmediate(function(){
console.log("Immediate");
});
// output
// Timeout
// Immediate
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment