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 ac423af461..470acd39aa 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
if (myVal > 10) {
return \"Greater Than\";
}
return \"Not Greater Than\";
}
myVal
is greater than 10
, the function will return \"Greater Than\"
. If it is not, the function will return \"Not Greater Than\"
.",
"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",