Javascript – Do callbacks from I/O operations that return promises go to the I/O queue or the microtask queue in Node?
I'm just learning the details of how the event loop in Node works. I learned that the promise queue takes priority over the timer queue, which takes priority over the I/O queue. async function asyncFunc() { let sum = 0;…