Created
April 29, 2020 04:38
-
-
Save bitfishxyz/fa880cc0666f5f8b5d5090f2d10aaf76 to your computer and use it in GitHub Desktop.
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('start') | |
setTimeout(() => { | |
console.log('setTimeout') | |
}) | |
Promise.resolve().then(() => { | |
console.log('resolve') | |
}) | |
console.log('end') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment