Link Search Menu Expand Document

Iterate Through an Array with a For Loop

Summary

  • A for loop can be used to iterate through an array.

Final Code

// Setup
var myArr = [ 2, 3, 4, 5, 6];

// Only change code below this line

var total = 0;

for (var i = 0; i < myArr.length; i++) {
  total+=myArr[i];
}