2.8 KiB
Raw Blame History

id, title, challengeType, videoUrl, forumTopicId, localeTitle
id title challengeType videoUrl forumTopicId localeTitle
5675e877dbd60be8ad28edc6 Iterate Through an Array with a For Loop 1 https://scrimba.com/c/caeR3HB 18216 Итерация через массив с петлей

Description

Общей задачей в JavaScript является итерация содержимого массива. Один из способов сделать это - цикл for . Этот код выводит каждый элемент массива arr на консоль:
var arr = [10,9,8,7,6];
для (var i = 0; i <arr.length; i ++) {
console.log (обр [я]);
}
Помните, что массивы имеют нулевую нумерацию, что означает, что последний индекс массива - длина - 1. Наше условие для этого цикла равно i < arr.length , которое останавливается, когда i является длиной - 1.

Instructions

Объявить и инициализировать значение переменной total равным 0 . Используйте цикл for чтобы добавить значение каждого элемента массива myArr в total .

Tests

tests:
  - text: <code>total</code> should be declared and initialized to 0
    testString: assert(code.match(/(var|let|const)\s*?total\s*=\s*0.*?;?/));
  - text: <code>total</code> should equal 20
    testString: assert(total === 20);
  - text: You should use a <code>for</code> loop to iterate through <code>myArr</code>
    testString: assert(code.match(/for\s*\(/g).length > 1 && code.match(/myArr\s*\[/));
  - text: Do not set <code>total</code> to 20 directly
    testString: assert(!code.match(/total[\s\+\-]*=\s*(0(?!\s*[;,]?$)|[1-9])/gm));

Challenge Seed

// 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

After Tests

(function(){if(typeof total !== 'undefined') { return "total = " + total; } else { return "total is undefined";}})()

Solution

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

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

var myArr = [ 2, 3, 4, 5, 6];
var total = 0;

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