From b18ae204b1a2b3514906e95828e8959cd29a6ac4 Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Sun, 17 May 2020 23:45:42 +0300 Subject: [PATCH] closes #1897 --- 1-js/02-first-steps/11-logical-operators/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/02-first-steps/11-logical-operators/article.md b/1-js/02-first-steps/11-logical-operators/article.md index 03c30c91..c2b779d3 100644 --- a/1-js/02-first-steps/11-logical-operators/article.md +++ b/1-js/02-first-steps/11-logical-operators/article.md @@ -134,7 +134,7 @@ This leads to some interesting usage compared to a "pure, classical, boolean-onl In the first line, the OR `||` operator stops the evaluation immediately upon seeing `true`, so the `alert` isn't run. - Sometimes, people use this feature to execute commands only if the condition on the left part is truthy. + Sometimes, people use this feature to execute commands only if the condition on the left part is falsy. ## && (AND)