Created
June 6, 2018 18:11
-
-
Save orodio/1e1b608f3a533cc2a0a5886e82f8914f to your computer and use it in GitHub Desktop.
This file contains 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
button.addEventListener('click', () => { | |
Promise.resolve().then(() => console.log('P1')) | |
console.log('L1') | |
}) | |
button.addEventListener('click', () => { | |
Promise.resolve().then(() => console.log('P2')) | |
console.log('L2') | |
}) | |
click button | |
L1 P1 L2 P2 | |
button.click() | |
L1 L2 P1 P2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment