Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions doc/api/globals.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,8 @@ The `queueMicrotask()` method queues a microtask to invoke `callback`. If
be emitted.

In general, `queueMicrotask` is the idiomatic choice over `process.nextTick()`.
`process.nextTick()` will always run before microtasks, and so unexpected
execution order may be observed.
`process.nextTick()` will always run before the microtask queue, and so
unexpected execution order may be observed.

```js
// Here, `queueMicrotask()` is used to ensure the 'load' event is always
Expand Down