final-expression
, we can count by even numbers.
We'll start at i = 0
and loop while i < 10
. We'll increment i
by 2 each loop with i += 2
.
var ourArray = [];
for (var i = 0; i < 10; i += 2) {
ourArray.push(i);
}
ourArray
will now contain [0,2,4,6,8]
.
Let's change our initialization
so we can count by odd numbers.
myArray
using a for
loop.
for
loop for this.
testString: 'assert(code.match(/for\s*\(/g).length > 1, ''You should be using a for
loop for this.'');'
- text: 'myArray
should equal [1,3,5,7,9]
.'
testString: 'assert.deepEqual(myArray, [1,3,5,7,9], ''myArray
should equal [1,3,5,7,9]
.'');'
```