for
. Этот код выводит каждый элемент массива arr
на консоль: var arr = [10,9,8,7,6];Помните, что массивы имеют нулевую нумерацию, что означает, что последний индекс массива - длина - 1. Наше условие для этого цикла равно
для (var i = 0; i <arr.length; i ++) {
console.log (обр [я]);
}
i < arr.length
, которое останавливается, когда i
является длиной - 1.
total
равным 0
. Используйте цикл for
чтобы добавить значение каждого элемента массива myArr
в total
.
total
should be declared and initialized to 0
testString: assert(code.match(/(var|let|const)\s*?total\s*=\s*0.*?;?/));
- text: total
should equal 20
testString: assert(total === 20);
- text: You should use a for
loop to iterate through myArr
testString: assert(code.match(/for\s*\(/g).length > 1 && code.match(/myArr\s*\[/));
- text: Do not set total
to 20 directly
testString: assert(!code.match(/total[\s\+\-]*=\s*(0(?!\s*[;,]?$)|[1-9])/gm));
```