From 578169203995a0356de6ea43582f8e1bf1d5c23b Mon Sep 17 00:00:00 2001 From: MkOveyan <125829897+MkOveyan@users.noreply.github.com> Date: Sun, 15 Oct 2023 22:13:46 +0300 Subject: [PATCH] =?UTF-8?q?=D0=98=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=D0=B8=D0=B5=20=D0=BD=D0=B5=D1=82=D0=BE=D1=87=D0=BD?= =?UTF-8?q?=D0=BE=D1=81=D1=82=D0=B8=20=D0=B2=20=D1=80=D0=B5=D1=88=D0=B5?= =?UTF-8?q?=D0=BD=D0=B8=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../11-logical-operators/10-check-login/solution.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/02-first-steps/11-logical-operators/10-check-login/solution.md b/1-js/02-first-steps/11-logical-operators/10-check-login/solution.md index 3627f2368b..69fe2ce96c 100644 --- a/1-js/02-first-steps/11-logical-operators/10-check-login/solution.md +++ b/1-js/02-first-steps/11-logical-operators/10-check-login/solution.md @@ -9,7 +9,7 @@ if (userName === 'Админ') { if (pass === 'Я главный') { alert( 'Здравствуйте!' ); - } else if (pass === '' || pass === null) { + } else if (pass === null) { alert( 'Отменено' ); } else { alert( 'Неверный пароль' );