Created
April 29, 2020 04:54
-
-
Save bitfishxyz/116ce65ec2efc93083eb17303ce137a4 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
const timer1 = setTimeout(() => { | |
console.log('timer1'); | |
const promise1 = Promise.resolve().then(() => { | |
console.log('promise1') | |
}) | |
}, 0) | |
const timer2 = setTimeout(() => { | |
console.log('timer2') | |
}, 0) | |
console.log('start') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment