From 04e2514dc85599b82de12725999ee942380e79c7 Mon Sep 17 00:00:00 2001 From: Ann Cascarano <4411121+redrambles@users.noreply.github.com> Date: Wed, 20 Jan 2021 10:26:26 -0500 Subject: [PATCH] Update article.md Missing word / small fix. --- 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 1fdc57a4..d722341b 100644 --- a/1-js/05-data-types/04-array/article.md +++ b/1-js/05-data-types/04-array/article.md @@ -438,7 +438,7 @@ This operator has no special treatment for arrays, it works with them as with an Let's recall the rules: - Two objects are equal `==` only if they're references to the same object. -- If one of arguments of `==` is an object, and the other one is a primitive, then the object gets converted to primitive, as explained in the chapter . +- If one of the arguments of `==` is an object, and the other one is a primitive, then the object gets converted to primitive, as explained in the chapter . - ...With an exception of `null` and `undefined` that equal `==` each other and nothing else. The strict comparison `===` is even simpler, as it doesn't convert types.