From 3f04442b7919fe4e63b935206f3cdda1c82c8833 Mon Sep 17 00:00:00 2001 From: Brent Guffens Date: Wed, 17 Jan 2018 21:26:44 +0100 Subject: [PATCH] Remove quotes around AND operator --- 1-js/02-first-steps/11-logical-operators/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.