Skip to content

Instantly share code, notes, and snippets.

@rpf5573
Created October 20, 2018 03:17
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/1a970356f4832ff0cae962400321faf3 to your computer and use it in GitHub Desktop.
Save rpf5573/1a970356f4832ff0cae962400321faf3 to your computer and use it in GitHub Desktop.
const fs = require('fs');
fs.readFile('hello.txt', () => {
setTimeout(() => {
console.log('timeout')
}, 0);
setImmediate(() => {
console.log('immediate')
});
});
// output
// immediate
// timeout
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment