Skip to content

Instantly share code, notes, and snippets.

@PabloRegen
Created April 9, 2019 23:21
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 PabloRegen/23f7bad11023c5859073e46838c11dfe to your computer and use it in GitHub Desktop.
Save PabloRegen/23f7bad11023c5859073e46838c11dfe to your computer and use it in GitHub Desktop.
// Synchronous: 1,2,3
alert(1);
alert(2);
alert(3);
// Asynchronous: 1,3,2
alert(1);
setTimeout(() => alert(2), 0);
alert(3);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment