From 93bfb3a689a91339622379192244ffa24c351eac 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 ac423af4614..470acd39aaa 100644 --- a/seed/challenges/01-front-end-development-certification/basic-javascript.json +++ b/seed/challenges/01-front-end-development-certification/basic-javascript.json @@ -2110,7 +2110,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",