From 87ef15befaff7ef93dfc3a0955ff7ae9ccaf940c Mon Sep 17 00:00:00 2001 From: JapneetSingh5 <54809290+JapneetSingh5@users.noreply.github.com> Date: Tue, 2 Jun 2020 12:52:59 +0530 Subject: [PATCH] Fixes a broken link to 'undefined is a keyword' (#38897) Fixes a broken link to 'undefined is a keyword' by replacing the wrong link with the correct one. --- .../return-early-pattern-for-functions.english.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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