Skip to content

Instantly share code, notes, and snippets.

@ikariwing
Created May 11, 2019 16:50
Show Gist options
  • Save ikariwing/dd054031afd01fbc6ece0fec6d456c95 to your computer and use it in GitHub Desktop.
Save ikariwing/dd054031afd01fbc6ece0fec6d456c95 to your computer and use it in GitHub Desktop.
async function foo() {
console.log('im in');
doSomething();
await doOtherThing();
}
async function bar() {
while (1) {
await getMessageFromAzure();
await foo();
}
}
bar();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment