2.1 KiB
2.1 KiB
id, title, challengeType
id | title | challengeType |
---|---|---|
56105e7b514f539506016a5e | Count Backwards With a For Loop | 1 |
Description
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.
Instructions
myArray
using a for
loop.
Tests
- text: You should be using a <code>for</code> loop for this.
testString: 'assert(code.match(/for\s*\(/g).length > 1, ''You should be using a <code>for</code> loop for this.'');'
- text: You should be using the array method <code>push</code>.
testString: 'assert(code.match(/myArray.push/), ''You should be using the array method <code>push</code>.'');'
- text: '<code>myArray</code> should equal <code>[9,7,5,3,1]</code>.'
testString: 'assert.deepEqual(myArray, [9,7,5,3,1], ''<code>myArray</code> should equal <code>[9,7,5,3,1]</code>.'');'
Challenge Seed
// Example
var ourArray = [];
for (var i = 10; i > 0; i -= 2) {
ourArray.push(i);
}
// Setup
var myArray = [];
// Only change code below this line.
After Test
console.info('after the test');
Solution
var ourArray = [];
for (var i = 10; i > 0; i -= 2) {
ourArray.push(i);
}
var myArray = [];
for (var i = 9; i > 0; i -= 2) {
myArray.push(i);
}