Created
May 23, 2018 13:35
-
-
Save calvinmetcalf/f2a1e9d4c4a3a825d59e9cfbb505d4fe 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
let x = 'foo' | |
async function test() { | |
console.log('top of func', x); | |
x+= await 'baz' | |
console.log('bottom of func', x) | |
} | |
test() | |
x = 'bar'; | |
console.log('bottom of file', x); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment