From 94cf065482a0b89ed0dd219f32f3d1fe30521572 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/challenges/01-front-end-development-certification/basic-javascript.json b/challenges/01-front-end-development-certification/basic-javascript.json index 03a9d83e3c..2fb15c0236 100644 --- a/challenges/01-front-end-development-certification/basic-javascript.json +++ b/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": [