From 2f6e4a27e21d2666c7648c9f25b2600588ef1007 Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Thu, 24 Sep 2020 23:01:15 +0300 Subject: [PATCH] minor fixes --- 1-js/05-data-types/04-array/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/05-data-types/04-array/article.md b/1-js/05-data-types/04-array/article.md index 6323c306..eede1a9e 100644 --- a/1-js/05-data-types/04-array/article.md +++ b/1-js/05-data-types/04-array/article.md @@ -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, as described in the chapter : ```js run -// [] converted to '' +// [] was converted to '' alert( 0 == '' ); // true, as '' becomes converted to number 0 alert('0' == '' ); // false, no type conversion, different strings