Skip to content

Commit e055c4c

Browse files
authored
Typo
1 parent 6109448 commit e055c4c

File tree

1 file changed

+1
-1
lines changed
  • 1-js/02-first-steps/11-logical-operators

1 file changed

+1
-1
lines changed

1-js/02-first-steps/11-logical-operators/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ The OR `"||"` operator does the following:
8282

8383
- Evaluate operands from left to right.
8484
- For each operand, convert it to boolean. If the result is `true`, then stop and return the original value of that operand.
85-
- If all other operands have been assessed (i.e. all were `falsy`), return the last operand.
85+
- If all other operands have been assessed (i.e. all were `false`), return the last operand.
8686

8787
A value is returned in its original form, without the conversion.
8888

0 commit comments

Comments
 (0)