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 037abb74123..d600d5501da 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 at the right of the operator to a variable on the left. ```js function equalityTest(myVal) { @@ -34,7 +34,7 @@ In order for JavaScript to compare two different data types (for ex ## Instructions
-Add the equality operator to the indicated line so that the function will return "Equal" when val is equivalent to 12 +Add the equality operator to the indicated line so that the function will return "Equal" when val is equivalent to 12.
## Tests