Created
June 24, 2025 17:15
-
-
Save kristinzinser/ab2b4a330e63833fcd353ff7b2805119 to your computer and use it in GitHub Desktop.
Event Loop
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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