From a68f101ba2e146838c5a5a7e65ba14a68c4fe00c Mon Sep 17 00:00:00 2001 From: Andrey Vitushkin Date: Mon, 14 Sep 2026 12:43:19 +0300 Subject: [PATCH] =?UTF-8?q?fix(event-loop):=20=D1=83=D0=B4=D0=B0=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=20=D0=BB=D0=B8=D1=88=D0=BD=D0=B8=D0=B9=20=D0=B8?= =?UTF-8?q?=D0=BD=D0=BA=D1=80=D0=B5=D0=BC=D0=B5=D0=BD=D1=82=20i++=20=D0=B2?= =?UTF-8?q?=20=D0=BF=D1=80=D0=B8=D0=BC=D0=B5=D1=80=D0=B5=20=D1=81=20=D0=B8?= =?UTF-8?q?=D0=BD=D0=B4=D0=B8=D0=BA=D0=B0=D1=86=D0=B8=D0=B5=D0=B9=20=D0=BF?= =?UTF-8?q?=D1=80=D0=BE=D0=B3=D1=80=D0=B5=D1=81=D1=81=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Removed unnecessary increment operation in count function. --- 2-ui/99-ui-misc/03-event-loop/article.md | 1 - 1 file changed, 1 deletion(-) diff --git a/2-ui/99-ui-misc/03-event-loop/article.md b/2-ui/99-ui-misc/03-event-loop/article.md index d5ff51efc8..8ad8044958 100644 --- a/2-ui/99-ui-misc/03-event-loop/article.md +++ b/2-ui/99-ui-misc/03-event-loop/article.md @@ -174,7 +174,6 @@ count(); function count() { for (let i = 0; i < 1e6; i++) { - i++; progress.innerHTML = i; } }