From dee07e79801e8a775d720fdb89e6d4d99abea7b2 Mon Sep 17 00:00:00 2001 From: Tahmid ul karim Date: Sat, 23 Jan 2016 01:43:22 +0600 Subject: [PATCH] fixed an issue #6380 .... basic-javascript.json added 'or' in between greater than equal to. --- .../basic-javascript.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/challenges/01-front-end-development-certification/basic-javascript.json b/challenges/01-front-end-development-certification/basic-javascript.json index c72f4a06d41..1f7bf1eb9e5 100644 --- a/challenges/01-front-end-development-certification/basic-javascript.json +++ b/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
", "

Instructions

", - "Add the 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
", "

Instructions

", - "Add the 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": [