From 5f63eb79ee1a2e591c80a2d4bcc52c2159b642d3 Mon Sep 17 00:00:00 2001 From: Mrugesh Mohapatra Date: Fri, 8 Jan 2016 07:30:58 +0000 Subject: [PATCH] closes FreeCodeCamp/FreeCodeCamp#5938 --- .../basic-javascript.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 90de89b27b..bf7551a281 100644 --- a/seed/challenges/01-front-end-development-certification/basic-javascript.json +++ b/seed/challenges/01-front-end-development-certification/basic-javascript.json @@ -2103,7 +2103,7 @@ "
function test(myVal) {
if (myVal > 10) {
return \"Greater Than\";
}
return \"Not Greater Than\";
}
", "If myVal is greater than 10, the function will return \"Greater Than\". If it is not, the function will return \"Not Greater Than\".", "

Instructions

", - "Create an if statement inside the function to return \"Yes\" if testMe is greater than 5. Return \"No\" if it is less than or equal to 5." + "Create an if statement inside the function to return \"Yes\" if testMe is greater than 5 and return \"No\" otherwise." ], "challengeSeed": [ "// Example",