2018-09-30 23:01:58 +01:00
|
|
|
---
|
|
|
|
id: 56104e9e514f539506016a5c
|
|
|
|
title: Iterate Odd Numbers With a For Loop
|
|
|
|
challengeType: 1
|
2019-02-14 12:24:02 -05:00
|
|
|
videoUrl: 'https://scrimba.com/c/cm8n7T9'
|
2019-07-31 11:32:23 -07:00
|
|
|
forumTopicId: 18212
|
2018-09-30 23:01:58 +01:00
|
|
|
---
|
|
|
|
|
|
|
|
## Description
|
|
|
|
<section id='description'>
|
|
|
|
For loops don't have to iterate one at a time. By changing our <code>final-expression</code>, we can count by even numbers.
|
|
|
|
We'll start at <code>i = 0</code> and loop while <code>i < 10</code>. We'll increment <code>i</code> by 2 each loop with <code>i += 2</code>.
|
2019-05-17 06:20:30 -07:00
|
|
|
|
|
|
|
```js
|
|
|
|
var ourArray = [];
|
|
|
|
for (var i = 0; i < 10; i += 2) {
|
|
|
|
ourArray.push(i);
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2018-09-30 23:01:58 +01:00
|
|
|
<code>ourArray</code> will now contain <code>[0,2,4,6,8]</code>.
|
|
|
|
Let's change our <code>initialization</code> so we can count by odd numbers.
|
|
|
|
</section>
|
|
|
|
|
|
|
|
## Instructions
|
|
|
|
<section id='instructions'>
|
|
|
|
Push the odd numbers from 1 through 9 to <code>myArray</code> using a <code>for</code> loop.
|
|
|
|
</section>
|
|
|
|
|
|
|
|
## Tests
|
|
|
|
<section id='tests'>
|
|
|
|
|
|
|
|
```yml
|
2018-10-04 14:37:37 +01:00
|
|
|
tests:
|
|
|
|
- text: You should be using a <code>for</code> loop for this.
|
2020-03-26 10:42:18 -07:00
|
|
|
testString: assert(/for\s*\([^)]+?\)/.test(code));
|
2018-10-20 21:02:47 +03:00
|
|
|
- text: <code>myArray</code> should equal <code>[1,3,5,7,9]</code>.
|
2019-07-13 00:07:53 -07:00
|
|
|
testString: assert.deepEqual(myArray, [1,3,5,7,9]);
|
2018-09-30 23:01:58 +01:00
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
## Challenge Seed
|
|
|
|
<section id='challengeSeed'>
|
|
|
|
|
|
|
|
<div id='js-seed'>
|
|
|
|
|
|
|
|
```js
|
|
|
|
// Setup
|
|
|
|
var myArray = [];
|
|
|
|
|
2020-03-02 23:18:30 -08:00
|
|
|
// Only change code below this line
|
2018-09-30 23:01:58 +01:00
|
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
### After Test
|
|
|
|
<div id='js-teardown'>
|
|
|
|
|
|
|
|
```js
|
2018-10-20 21:02:47 +03:00
|
|
|
if(typeof myArray !== "undefined"){(function(){return myArray;})();}
|
2018-09-30 23:01:58 +01:00
|
|
|
```
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
## Solution
|
|
|
|
<section id='solution'>
|
|
|
|
|
|
|
|
|
|
|
|
```js
|
|
|
|
var myArray = [];
|
|
|
|
for (var i = 1; i < 10; i += 2) {
|
|
|
|
myArray.push(i);
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
</section>
|