From d91a988aa4227bfb19925b073e9e240212b63558 Mon Sep 17 00:00:00 2001 From: Gabriel Kuslap Date: Sun, 7 Oct 2018 10:02:48 +0300 Subject: [PATCH] Revert "fix typo: change "if" to "is"" This reverts commit d723403c74ea92340ba3a4ad6284e53f9944e0fc. --- .../11-logical-operators/5-alert-and-or/solution.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/02-first-steps/11-logical-operators/5-alert-and-or/solution.md b/1-js/02-first-steps/11-logical-operators/5-alert-and-or/solution.md index 25e3568f..32a8ccf2 100644 --- a/1-js/02-first-steps/11-logical-operators/5-alert-and-or/solution.md +++ b/1-js/02-first-steps/11-logical-operators/5-alert-and-or/solution.md @@ -12,5 +12,5 @@ The result of `2 && 3 = 3`, so the expression becomes: null || 3 || 4 ``` -Now the result is the first truthy value: `3`. +Now the result if the first truthy value: `3`.