Skip to content

Commit 2d63151

Browse files
committed
minor fixes
1 parent e4c928b commit 2d63151

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

1-js/05-data-types/04-array/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -461,7 +461,7 @@ alert( 0 == [] ); // true
461461
alert('0' == [] ); // false
462462
```
463463

464-
Here, in both cases, we compare a primitive with an array object. So the array `[]` gets converted to primitive and becomes an empty string `''`.
464+
Here, in both cases, we compare a primitive with an array object. So the array `[]` gets converted to primitive for the purpose of comparison and becomes an empty string `''`.
465465

466466
Then the comparison process goes on:
467467

0 commit comments

Comments
 (0)