From d92cb4743f1b2d07a49f4eeea60e109ea3bcb94e Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Thu, 24 Sep 2020 23:01:09 +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 3f9b64bd..6323c306 100644 --- a/1-js/05-data-types/04-array/article.md +++ b/1-js/05-data-types/04-array/article.md @@ -463,7 +463,7 @@ alert('0' == [] ); // false 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 `''`. -Then the comparison process goes on: +Then the comparison process goes on, as described in the chapter : ```js run // [] converted to ''