Skip to content

Instantly share code, notes, and snippets.

@rpf5573
Last active October 20, 2018 02:29
Show Gist options
  • Save rpf5573/5000c346e03e18747b7c176c18a0f6a9 to your computer and use it in GitHub Desktop.
Save rpf5573/5000c346e03e18747b7c176c18a0f6a9 to your computer and use it in GitHub Desktop.
setTimeout vs setImmediate
//index.js
setTimeout(function(){
console.log("SETTIMEOUT");
}, 0);
setImmediate(function(){
console.log("SETIMMEDIATE");
});
// output
// SETTIMEOUT
// SETIMMEDIATE
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment