From bdd936f339f4012f1b82db5d156fca92a5a75f0d Mon Sep 17 00:00:00 2001 From: Antony ekirapa Date: Sat, 23 May 2020 12:11:46 +0300 Subject: [PATCH] fixed grammar --- 1-js/02-first-steps/09-comparison/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/02-first-steps/09-comparison/article.md b/1-js/02-first-steps/09-comparison/article.md index 0f9635a5..012d359e 100644 --- a/1-js/02-first-steps/09-comparison/article.md +++ b/1-js/02-first-steps/09-comparison/article.md @@ -7,7 +7,7 @@ In JavaScript they are written like this: - Greater/less than: a > b, a < b. - Greater/less than or equals: a >= b, a <= b. - Equals: `a == b`, please note the double equality sign `=` means the equality test, while a single one `a = b` means an assignment. -- Not equals. In maths the notation is , but in JavaScript the it's written as a != b. +- Not equals. In maths the notation is , but in JavaScript it's written as a != b. In this article we'll learn more about different types of comparisons, how JavaScript makes them, including important peculiarities.