Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save kristinzinser/ab2b4a330e63833fcd353ff7b2805119 to your computer and use it in GitHub Desktop.

Select an option

Save kristinzinser/ab2b4a330e63833fcd353ff7b2805119 to your computer and use it in GitHub Desktop.
Event Loop
console.log('1');
setTimeout(() => console.log('2'), 0);
Promise.resolve().then(() => console.log('3'));
console.log('4');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment