diff --git a/challenges/01-front-end-development-certification/basic-javascript.json b/challenges/01-front-end-development-certification/basic-javascript.json
index c0ff33c255..7fdaa78afa 100644
--- a/challenges/01-front-end-development-certification/basic-javascript.json
+++ b/challenges/01-front-end-development-certification/basic-javascript.json
@@ -2300,7 +2300,8 @@
"id": "56533eb9ac21ba0edf2244d4",
"title": "Comparison with the Greater Than Operator",
"description": [
- "The greater than operator (>
) compares the values of two numbers. If the number to the left is greater than the number to the right, it returns true
. Otherwise, it returns false
.
Like the equality operator, greater than operator will convert data types of values while comparing.",
+ "The greater than operator (>
) compares the values of two numbers. If the number to the left is greater than the number to the right, it returns true
. Otherwise, it returns false
.",
+ "Like the equality operator, greater than operator will convert data types of values while comparing.",
"Examples",
"
5 > 3 // true", "
7 > '3' // true
2 > 3 // false
'1' > 9 // false
greater than or equal to
operator (>=
) compares the values of two numbers. If the number to the left is greater than or equal to the number to the right, it returns true
. Otherwise, it returns false
.greater than or equal to
operator will convert data types while comparing.",
+ "The greater than or equal to
operator (>=
) compares the values of two numbers. If the number to the left is greater than or equal to the number to the right, it returns true
. Otherwise, it returns false
.",
+ "Like the equality operator, greater than or equal to
operator will convert data types while comparing.",
"Examples",
"6 >= 6 // true", "
7 >= '3' // true
2 >= 3 // false
'7' >= 9 // false