From c0dfcb1b39df1c8dfb53940978d5f2ffe91a7d3d Mon Sep 17 00:00:00 2001 From: Eric Leung Date: Tue, 26 Jan 2016 07:36:55 -0800 Subject: [PATCH] Adds spaces between paragraphs Tested locally. Closes #6374 --- .../basic-javascript.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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
", "

Instructions

", @@ -2343,7 +2344,8 @@ "id": "56533eb9ac21ba0edf2244d5", "title": "Comparison with the Greater Than Or Equal To Operator", "description": [ - "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.", + "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

",