From 75fc2c556fc4ad4f95eda5d7882e63a140e1bc61 Mon Sep 17 00:00:00 2001 From: Ian Witham Date: Sun, 9 Jul 2017 11:28:16 +1200 Subject: [PATCH] Update article.md to fix typo Section should refer to "strict" comparison operator, not "string" comparison operator. --- 1-js/02-first-steps/08-comparison/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/02-first-steps/08-comparison/article.md b/1-js/02-first-steps/08-comparison/article.md index 8b474f78..61be0e77 100644 --- a/1-js/02-first-steps/08-comparison/article.md +++ b/1-js/02-first-steps/08-comparison/article.md @@ -136,7 +136,7 @@ alert( 0 === false ); // false, because the types are different There also exists a "strict non-equality" operator `!==`, as an analogy for `!=`. -The string equality check operator is a bit longer to write, but makes it obvious what's going on and leaves less space for errors. +The strict equality check operator is a bit longer to write, but makes it obvious what's going on and leaves less space for errors. ## Comparison with null and undefined