Not await the last async

Run Settings
LanguageJavaScript
Language Version
Run Command
async function foo() { await a() b() } async function a() { return new Promise((resolve, reject) => { setTimeout(() => { console.log('a') resolve('a') }, 10) }) } async function b() { return new Promise((resolve, reject) => { setTimeout(() => { console.log('b') resolve('b') }, 10) }) } void async function () { await foo() console.log('c') }()
Editor Settings
Theme
Key bindings
Full width
Lines