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 c72f4a06d4..1f7bf1eb9e 100644
--- a/seed/challenges/01-front-end-development-certification/basic-javascript.json
+++ b/seed/challenges/01-front-end-development-certification/basic-javascript.json
@@ -2343,13 +2343,13 @@
},
{
"id": "56533eb9ac21ba0edf2244d5",
- "title": "Comparison with the Greater Than Equal To Operator",
+ "title": "Comparison with the Greater Than Or Equal To Operator",
"description": [
- "The greater than 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 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
greater than equal to
operator to the indicated lines so that the return statements make sense."
+ "Add the greater than or equal to
operator to the indicated lines so that the return statements make sense."
],
"releasedOn": "January 1, 2016",
"challengeSeed": [
@@ -2428,13 +2428,13 @@
},
{
"id": "56533eb9ac21ba0edf2244d7",
- "title": "Comparison with the Less Than Equal To Operator",
+ "title": "Comparison with the Less Than Or Equal To Operator",
"description": [
- "The less than equal to
operator (<=
) compares the values of two numbers. If the number to the left is less than or equal the number to the right, it returns true
. If the number on the left is greater than the number on the right, it returns false
. Like the equality operator, less than equal to
converts data types.",
+ "The less than or equal to
operator (<=
) compares the values of two numbers. If the number to the left is less than or equal the number to the right, it returns true
. If the number on the left is greater than the number on the right, it returns false
. Like the equality operator, less than or equal to
converts data types.",
"Examples",
"4 <= 5 // true", "
'7' <= 7 // true
5 <= 5 // true
3 <= 2 // false
'8' <= 4 // false
less than equal to
operator to the indicated lines so that the return statements make sense."
+ "Add the less than or equal to
operator to the indicated lines so that the return statements make sense."
],
"releasedOn": "January 1, 2016",
"challengeSeed": [