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