From 7c20a2407a51a473e699f0573382d38b4dc33f64 Mon Sep 17 00:00:00 2001 From: Mrugesh Mohapatra Date: Tue, 12 Jan 2016 01:56:19 +0530 Subject: [PATCH] fixes FreeCodeCamp/FreeCodecamp#6055 --- .../basic-javascript.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 03a9d83e3c2..2fb15c02360 100644 --- a/seed/challenges/01-front-end-development-certification/basic-javascript.json +++ b/seed/challenges/01-front-end-development-certification/basic-javascript.json @@ -2573,7 +2573,7 @@ "When a condition for an if statement is true, the block of code following it is executed. What about when that condition is false? Normally nothing would happen. With an else statement, an alternate block of code can be executed.", "
if (num > 10) {
return \"Bigger than 10\";
} else {
return \"10 or Less\";
}
", "

Instructions

", - "Combine the if statements into a single statement." + "Combine the if statements into a single if/else statement." ], "releasedOn": "January 1, 2016", "challengeSeed": [