Sorry if its a really naive question. I have described the situation as follows. My question is, will OtherAsyncFunction()
continue and complete its execution if runThis()
returns prematurely?
var a = await runThis();
async function runThis(){
// ...
OtherAsyncFunction();
// ...
return await someOtherAsyncFunction;
}