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 c3a1f37a..143bdee1 100644 --- a/1-js/02-first-steps/11-logical-operators/article.md +++ b/1-js/02-first-steps/11-logical-operators/article.md @@ -78,7 +78,7 @@ Given multiple OR'ed values: result = value1 || value2 || value3; ``` -The OR `"||"` operator does the following: +The OR `||` operator does the following: - Evaluate operands from left to right. - For each operand, convert it to boolean. If the result is `true`, then stop and return the original value of that operand.