Skip to content

Instantly share code, notes, and snippets.

@calvinmetcalf
Created May 23, 2018 13:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save calvinmetcalf/f2a1e9d4c4a3a825d59e9cfbb505d4fe to your computer and use it in GitHub Desktop.
Save calvinmetcalf/f2a1e9d4c4a3a825d59e9cfbb505d4fe to your computer and use it in GitHub Desktop.
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