function queueMicrotask
queueMicrotask(func: VoidFunction): void
A microtask is a short function which is executed after the function or
module which created it exits and only if the JavaScript execution stack is
empty, but before returning control to the event loop being used to drive the
script's execution environment. This event loop may be either the main event
loop or the event loop driving a web worker.
```ts
queueMicrotask(() => { console.log('This event loop stack is complete'); });
```
func: VoidFunction
void