From 2dbfc1855c6a248db49cfa0d8c19104b91befb2d Mon Sep 17 00:00:00 2001 From: Gabriel Kuslap Date: Sun, 7 Oct 2018 10:08:52 +0300 Subject: [PATCH] Revert "Fix typo: change 'if' to 'is'" This reverts commit 1091f1bc6cedc0f8698df0e09ce2067a0b80f273. --- .../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`.