From e4c928ba2d3eb275ce4c6aae6dc48cd6106194a7 Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Thu, 24 Sep 2020 22:59:06 +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 86ba2d34..8e41d07a 100644 --- a/1-js/05-data-types/04-array/article.md +++ b/1-js/05-data-types/04-array/article.md @@ -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 `==`.