Skip to content

Instantly share code, notes, and snippets.

@zhanglintc
Last active January 15, 2023 16:24
Show Gist options
  • Save zhanglintc/4f800060dcf7dc0b6852657914760223 to your computer and use it in GitHub Desktop.
Save zhanglintc/4f800060dcf7dc0b6852657914760223 to your computer and use it in GitHub Desktop.
function heavyTask() {
i=0
// do a heavy job
for (let j = 0; j < 1e8; j++) {
i++;
}
}
setTimeout(function(){console.log(1)}, 10)
heavyTask();
setTimeout(function(){console.log(2)}, 0)
// Chrome:
// 2
// 1
// Node.js:
// 1
// 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment