Skip to content

Commit 3155369

Browse files
authoredJan 13, 2019
Merge pull request #724 from maurodibert/patch-12
Update article.md
2 parents 005ad3d + f86d0cf commit 3155369

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
@@ -133,7 +133,7 @@ This leads to some interesting usage compared to a "pure, classical, boolean-onl
133133
alert(x); // undefined, because (x = 1) not evaluated
134134
```
135135

136-
If, instead, the first argument is `false`, `OR` evaluates the second one, thus running the assignment:
136+
If, instead, the first argument is `false`, `||` evaluates the second one, thus running the assignment:
137137

138138
```js run no-beautify
139139
let x;

0 commit comments

Comments
 (0)
Please sign in to comment.