minor fixes

This commit is contained in:
Ilya Kantor 2020-09-24 22:59:06 +03:00
parent e76cf3a3c2
commit e4c928ba2d

View file

@ -429,7 +429,7 @@ alert( "1" + 1 ); // "11"
alert( "1,2" + 1 ); // "1,21"
```
## Dont compare arrays with ==
## Don't compare arrays with ==
Arrays in JavaScript, unlike some other programming languages, shouldn't be compared with operator `==`.