From 8621136b586adcdca513786adb5bc8f67a267461 Mon Sep 17 00:00:00 2001 From: Abhisek Pattnaik Date: Sat, 26 Dec 2015 18:01:09 +0530 Subject: [PATCH] Comparison with the Greater Than Operator --- .../basic-javascript.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 8125da7ed9..163190b523 100644 --- a/seed/challenges/01-front-end-development-certification/basic-javascript.json +++ b/seed/challenges/01-front-end-development-certification/basic-javascript.json @@ -2465,8 +2465,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. If the number on the left is less than or equal to the number on the right, it returns false. Like the equality operator, greater than converts data types.", - "Examples
5 > 3 // true
7 > '3' // true
2 > 3 // false
'1' > 9 // false
", + "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
", "

Instructions

", "Add the greater than operator to the indicated lines so that the return statements make sense." ],