Remove quotes around equality operator

This commit is contained in:
Brent Guffens 2018-01-17 14:23:20 +01:00 committed by GitHub
parent 488e8504a7
commit 2a3c6bc1d1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -108,7 +108,7 @@ From JavaScript's standpoint that's quite normal. An equality check converts usi
## Strict equality
A regular equality check `"=="` has a problem. It cannot differ `0` from `false`:
A regular equality check `==` has a problem. It cannot differ `0` from `false`:
```js run
alert( 0 == false ); // true