diff --git a/2-ui/99-ui-misc/03-event-loop/2-micro-macro-queue/solution.md b/2-ui/99-ui-misc/03-event-loop/2-micro-macro-queue/solution.md index 5bc5026b..3a0daa97 100644 --- a/2-ui/99-ui-misc/03-event-loop/2-micro-macro-queue/solution.md +++ b/2-ui/99-ui-misc/03-event-loop/2-micro-macro-queue/solution.md @@ -47,6 +47,4 @@ To summarize, - The macrotask queue is now: `console.log(2); console.log(6); console.log(4)`. 3. After the microtask queue becomes empty, the macrotask queue executes. It outputs `2`, `6`, `4`. -Finally, we have the output: `1 7 3 5 2 6 4`. - -Получается вывод `1 7 3 5 2 6 4`. \ No newline at end of file +Finally, we have the output: `1 7 3 5 2 6 4`. \ No newline at end of file