Update article.md

This commit is contained in:
Mau Di Bert 2019-01-10 21:10:05 -03:00 committed by GitHub
parent 754cc6d70e
commit f86d0cff2a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -133,7 +133,7 @@ This leads to some interesting usage compared to a "pure, classical, boolean-onl
alert(x); // undefined, because (x = 1) not evaluated
```
If, instead, the first argument is `false`, `OR` evaluates the second one, thus running the assignment:
If, instead, the first argument is `false`, `||` evaluates the second one, thus running the assignment:
```js run no-beautify
let x;