async function innerFunc() { await doThis(); await doThisNext(); return 5; } async function outerFunc() { innerFunc(); return 10; }
When \'awa