Skip to content

Instantly share code, notes, and snippets.

@prof3ssorSt3v3
Created June 21, 2019 12:25
Show Gist options
  • Save prof3ssorSt3v3/5ec4ceda0a34026fd5819d28f01ca216 to your computer and use it in GitHub Desktop.
Save prof3ssorSt3v3/5ec4ceda0a34026fd5819d28f01ca216 to your computer and use it in GitHub Desktop.
let num = 0;
async function increment() {
num += await 2;
console.log(num);
}
increment();
num += 1;
console.log(num);
/****
* What is the resulting output?
* 2, 3
* 1, 3
* 1, 2
* 2, 1
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment