From 8d2b0426ec4602c30d1a6c59a92d28a4e3f24493 Mon Sep 17 00:00:00 2001 From: Alex Hughes Date: Sun, 16 Jul 2017 14:46:16 -0400 Subject: [PATCH] Fixed small typo ('do' changed to 'to') --- 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 61be0e77..1eadb231 100644 --- a/1-js/02-first-steps/08-comparison/article.md +++ b/1-js/02-first-steps/08-comparison/article.md @@ -162,7 +162,7 @@ For a non-strict check `==` For maths and other comparisons `< > <= >=` : Values `null/undefined` are converted to a number: `null` becomes `0`, while `undefined` becomes `NaN`. -Now let's see funny things that happen when we apply those rules. And, what's more important, how do not fall into a trap with these features. +Now let's see funny things that happen when we apply those rules. And, what's more important, how to not fall into a trap with these features. ### Strange result: null vs 0