From fd85f573765123c26154f6d7f30701518856f29f Mon Sep 17 00:00:00 2001 From: Farjad Fazli <51179586+farjadfazli@users.noreply.github.com> Date: Sat, 2 May 2020 09:17:11 -0400 Subject: [PATCH] fix(learn): fixed typo "in the left" should be "at the left" (#38651) * Fixed typo "in the left" should be "at the left" * Update curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/comparison-with-the-equality-operator.english.md Co-Authored-By: Shaun Hamilton <51722130+Sky020@users.noreply.github.com> Co-authored-by: Shaun Hamilton <51722130+Sky020@users.noreply.github.com> --- .../comparison-with-the-equality-operator.english.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/comparison-with-the-equality-operator.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/comparison-with-the-equality-operator.english.md index 56772d41ec..5913f97743 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/comparison-with-the-equality-operator.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/comparison-with-the-equality-operator.english.md @@ -9,7 +9,7 @@ forumTopicId: 16784 ## Description
There are many comparison operators in JavaScript. All of these operators return a boolean true or false value. -The most basic operator is the equality operator ==. The equality operator compares two values and returns true if they're equivalent or false if they are not. Note that equality is different from assignment (=), which assigns the value at the right of the operator to a variable in the left. +The most basic operator is the equality operator ==. The equality operator compares two values and returns true if they're equivalent or false if they are not. Note that equality is different from assignment (=), which assigns the value on the right of the operator to a variable on the left. ```js function equalityTest(myVal) {