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`.