Remove quotes around equality operator
This commit is contained in:
parent
488e8504a7
commit
2a3c6bc1d1
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue