diff --git a/seed/challenges/01-front-end-development-certification/basic-javascript.json b/seed/challenges/01-front-end-development-certification/basic-javascript.json
index cc3d9a553a..a0019b271f 100644
--- a/seed/challenges/01-front-end-development-certification/basic-javascript.json
+++ b/seed/challenges/01-front-end-development-certification/basic-javascript.json
@@ -2369,10 +2369,10 @@
"id": "56533eb9ac21ba0edf2244d2",
"title": "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 types.",
- "Examples
1 != 2 // true", + "The inequality operator (
1 != \"1\" // false
1 != '1' // false
1 != true // false
0 != false // false
!=
) 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.",
+ "Examples1 != 2 // true", "
1 != \"1\" // false
1 != '1' // false
1 != true // false
0 != false // false
!=
to the if
statement so the function will return \"Not Equal\" when val
is not equivilent to 99
"
+ "Add the inequality operator !=
in the if
statement so that the function will return \"Not Equal\" when val
is not equivalent to 99
"
],
"releasedOn": "11/27/2015",
"tests": [