From 5d803f0e5a3a6867915603590c59eddb97ca7fa8 Mon Sep 17 00:00:00 2001 From: Peter Weinberg Date: Fri, 13 Jan 2017 21:14:43 -0500 Subject: [PATCH] changed 'backward' to 'backwards' --- .../basic-javascript.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 8b4a93c1c4..644311608d 100644 --- a/seed/challenges/01-front-end-development-certification/basic-javascript.json +++ b/seed/challenges/01-front-end-development-certification/basic-javascript.json @@ -5174,12 +5174,12 @@ "id": "56105e7b514f539506016a5e", "title": "Count Backwards With a For Loop", "description": [ - "A for loop can also count backwards, so long as we can define the right conditions.", - "In order to count backwards by twos, we'll need to change our initialization, condition, and final-expression.", + "A for loop can also count backwards, as long as the right conditions are defined.", + "For example, in order to count backwards by twos, we need to change our initialization, condition, and final-expression.", "We'll start at i = 10 and loop while i > 0. We'll decrement i by 2 each loop with i -= 2.", "
var ourArray = [];
for (var i=10; i > 0; i-=2) {
ourArray.push(i);
}
", "ourArray will now contain [10,8,6,4,2].", - "Let's change our initialization and final-expression so we can count backward by twos by odd numbers.", + "Let's change our initialization and final-expression so we can count backwards by twos by odd numbers.", "

Instructions

", "Push the odd numbers from 9 through 1 to myArray using a for loop." ],