diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/return-early-pattern-for-functions.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/return-early-pattern-for-functions.english.md index 396caf41cb..b4228b0ac4 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/return-early-pattern-for-functions.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/return-early-pattern-for-functions.english.md @@ -27,7 +27,7 @@ The above outputs "Hello" to the console, returns "World", but "byebye" 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. +Hint
Remember that undefined is a keyword, not a string. ## Tests