minor fixes

This commit is contained in:
Ilya Kantor 2020-09-24 23:01:57 +03:00
parent ea673f4f2f
commit a6017db26f

View file

@ -466,7 +466,7 @@ Here, in both cases, we compare a primitive with an array object. So the array `
Then the comparison process goes on with the primitives, as described in the chapter <info:type-conversions>:
```js run
// [] was converted to ''
// after [] was converted to ''
alert( 0 == '' ); // true, as '' becomes converted to number 0
alert('0' == '' ); // false, no type conversion, different strings