From 5fa41b360ebff264c97a7c7e8293b96c8340ac89 Mon Sep 17 00:00:00 2001 From: Gabriel Kuslap Date: Sun, 7 Oct 2018 10:30:37 +0300 Subject: [PATCH] Fix typo: change 'if' to 'is' --- .../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 32a8ccf2..25e3568f 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 if the first truthy value: `3`. +Now the result is the first truthy value: `3`.