Oletem
9/28/2017 - 8:48 PM

Count Backwards With a For Loop

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.

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].


// Example
var ourArray = [];

for (var i = 10; i > 0; i -= 2) {
  ourArray.push(i);
}

//[10,8,6,4,2]

// Setup
var myArray = [];

// Only change code below this line.

var myArray = [];

for(var i = 9; i>0; i-=2){
  
  myArray.push(i); 
  
  //[9,7,5,3,1]
}