From 2a3c6bc1d1d4699dc1b327119979754217c9515c Mon Sep 17 00:00:00 2001 From: Brent Guffens Date: Wed, 17 Jan 2018 14:23:20 +0100 Subject: [PATCH] Remove quotes around equality 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 bf811862..f02dc447 100644 --- a/1-js/02-first-steps/08-comparison/article.md +++ b/1-js/02-first-steps/08-comparison/article.md @@ -108,7 +108,7 @@ From JavaScript's standpoint that's quite normal. An equality check converts usi ## Strict equality -A regular equality check `"=="` has a problem. It cannot differ `0` from `false`: +A regular equality check `==` has a problem. It cannot differ `0` from `false`: ```js run alert( 0 == false ); // true