From 81fe2b18a871b37c36b636efcea17e443e116e4e Mon Sep 17 00:00:00 2001 From: Nick Duffy Date: Sun, 3 Jan 2016 07:31:28 -0700 Subject: [PATCH] Fix comparitive language typo in Waypoint --- .../basic-javascript.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenges/01-front-end-development-certification/basic-javascript.json b/challenges/01-front-end-development-certification/basic-javascript.json index b72133c822..f395f39bf9 100644 --- a/challenges/01-front-end-development-certification/basic-javascript.json +++ b/challenges/01-front-end-development-certification/basic-javascript.json @@ -2807,7 +2807,7 @@ "title": "Introducing Else If Statements", "description": [ "If you have multiple conditions that need to be addressed, you can chain if statements together with else if statements.", - "
if (num > 15) {
return \"Bigger then 15\";
} else if (num < 5) {
return \"Smaller than 5\";
} else {
return \"Between 5 and 15\";
}
", + "
if (num > 15) {
return \"Bigger than 15\";
} else if (num < 5) {
return \"Smaller than 5\";
} else {
return \"Between 5 and 15\";
}
", "

Instructions

", "Convert the logic to use else if statements." ],