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 b2904407af..133e8bdcf2 100644 --- a/seed/challenges/01-front-end-development-certification/basic-javascript.json +++ b/seed/challenges/01-front-end-development-certification/basic-javascript.json @@ -3025,7 +3025,8 @@ "
function myFun() {
console.log(\"Hello\");
return \"World\";
console.log(\"byebye\")
}
myFun();
", "The above outputs \"Hello\" to the console, returns \"World\", but \"byebye\" is never output, because the function exits at the return statement.", "

Instructions

", - "Modify the function abTest so that if a or b are less than 0 the function will immediately exit with a value of undefined." + "Modify the function abTest so that if a or b are less than 0 the function will immediately exit with a value of undefined.", + "Hint
Remember that undefined is a keyword, not a string." ], "releasedOn": "January 1, 2016", "challengeSeed": [