Last active
September 22, 2019 13:03
-
-
Save datrine/e694bcef0ecc6be18bbd815bb76390a9 to your computer and use it in GitHub Desktop.
synchronous_callback
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
| (cb=>{ //the code runs as | |
| cb(); | |
| console.log("B") | |
| })(()=>{ | |
| console.log("C") | |
| }); | |
| console.log("A") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment