Merge pull request #998 from GodAzaldin/master

Fixed an error in the 'An incomparable undefined' section. The value …
This commit is contained in:
Ilya Kantor 2019-05-20 10:11:30 +03:00 committed by GitHub
commit 3ce2d96948
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -193,7 +193,7 @@ Why does it dislike zero so much? Always false!
We get these results because:
- Comparisons `(1)` and `(2)` return `false` because `undefined` gets converted to `NaN` and `NaN` is a special numeric value which returns `false` for all comparisons.
- The equality check `(3)` returns `false` because `undefined` only equals `null` and no other value.
- The equality check `(3)` returns `false` because `undefined` only equals `null`, `undefined`, and no other value.
### Evade problems