From 60d84b96486478370b890bd3209f68c6872d1579 Mon Sep 17 00:00:00 2001 From: Sulaiman Date: Tue, 8 Oct 2024 15:11:38 +0500 Subject: [PATCH] fix(curriculum): improve explanation of inequality operator (!=) in JavaScript challenge (#56593) Co-authored-by: Ilenia <26656284+ilenia-magoni@users.noreply.github.com> --- .../basic-javascript/comparison-with-the-inequality-operator.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-inequality-operator.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/comparison-with-the-inequality-operator.md index 8a8f79c4b84..cfd62b20c8c 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/comparison-with-the-inequality-operator.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/comparison-with-the-inequality-operator.md @@ -9,7 +9,7 @@ dashedName: comparison-with-the-inequality-operator # --description-- -The inequality operator (`!=`) is the opposite of the equality operator. It means not equal and returns `false` where equality would return `true` and *vice versa*. Like the equality operator, the inequality operator will convert data types of values while comparing. +The inequality operator (`!=`) is the opposite of the equality operator. Inequality means not equal. The inequality operator returns `false` when the equality operator would return `true` and *vice versa*. Like the equality operator, the inequality operator will convert data types of values while comparing. **Examples**