diff --git a/challenges/01-front-end-development-certification/basic-javascript.json b/challenges/01-front-end-development-certification/basic-javascript.json
index 239ff2a1be..cc3d9a553a 100644
--- a/challenges/01-front-end-development-certification/basic-javascript.json
+++ b/challenges/01-front-end-development-certification/basic-javascript.json
@@ -2326,8 +2326,9 @@
"description": [
"Strict equality (===
) is the counterpart to the equality operator (==
). Unlike the equality operator, strict equality tests both the type and value of the compared elements.",
"Examples
3 === 3 // true", + "In the second example,
3 === '3' // false
3
is a Number
type and '3'
is a String
type.",
"if
statement so the function will return \"Equal\" when val
is strictltly equal to 7
"
+ "Use strict equality operator in if
statement so the function will return \"Equal\" when val
is strictly equal to 7
"
],
"releasedOn": "11/27/2015",
"tests": [