From 4b4c65abebaf1ccc44f70db4327f71fa6dcbb44b Mon Sep 17 00:00:00 2001 From: Brent Guffens Date: Wed, 17 Jan 2018 14:43:42 +0100 Subject: [PATCH] Typos --- 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 f02dc447..c213c346 100644 --- a/1-js/02-first-steps/08-comparison/article.md +++ b/1-js/02-first-steps/08-comparison/article.md @@ -146,7 +146,7 @@ There's a non-intuitive behavior when `null` or `undefined` are compared with ot For a strict equality check `===` -: These values are different, because each of them belong to a separate type of it's own. +: These values are different, because each of them belongs to a separate type of its own. ```js run alert( null === undefined ); // false