Quotes help make search much faster. Example: "Practice Makes Perfect"

Thursday, May 11, 2017

FreeCodeCamp Iterate Through An Array With A For Loop Sample Solution



// Example
var ourArr = [ 9, 10, 11, 12];
var ourTotal = 0;

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

// 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];
}

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts