Why does this line of code with 'await' trigger microtask queue processing?
问题 The following quotes are my primary references for understanding microtask queue processing: Microtasks (which promises use) are processed when the JS stack empties. - Jake Archibald That doesn't make sense to me. One go-around of the event loop will have exactly one task being processed from the macrotask queue (this queue is simply called the task queue in the WHATWG specification). After this macrotask has finished, all available microtasks will be processed, namely within the same go