DEV Community

Harit Himanshu
Harit Himanshu

Posted on

Where can I find the complete list of items added to MicroTask Queue?

I am following up after reading the post Difference between microtask and macrotask within an event loop context

The examples posted are

macrotasks: setTimeout, setInterval, setImmediate, requestAnimationFrame, I/O, UI rendering
microtasks: process.nextTick, Promises, Object.observe, MutationObserver

I am wondering where can I find the list of tasks added to the microtask

Top comments (0)