We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff82a9b commit db9b580Copy full SHA for db9b580
2-ui/99-ui-misc/03-event-loop/article.md
@@ -263,7 +263,7 @@ What's going to be the order here?
263
2. `promise` shows second, because `.then` passes through the microtask queue, and runs after the current code.
264
3. `timeout` shows last, because it's a macrotask.
265
266
-The richer event loop picture looks like this:
+The richer event loop picture looks like this (order is from bottom to top, that is: `setTimeout` first, then microtasks and so on):
267
268

269
0 commit comments