2.5 KiB
2.5 KiB
id, title, challengeType, videoUrl, forumTopicId, localeTitle
id | title | challengeType | videoUrl | forumTopicId | localeTitle |
---|---|---|---|---|---|
56533eb9ac21ba0edf2244e1 | Nesting For Loops | 1 | https://scrimba.com/c/cRn6GHM | 18248 | Вложение в петли |
Description
var arr = [Это выводит каждый подэлемент в
[1,2], [3,4], [5,6]
];
для (var i = 0; i <arr.length; i ++) {
для (var j = 0; j <arr [i] .length; j ++) {
console.log (обр [я] [J]);
}
}
arr
одному за раз. Обратите внимание, что для внутреннего цикла мы проверяем .length
of arr[i]
, так как arr[i]
сам является массивом.
Instructions
multiplyAll
так, чтобы она умножала переменную product
на каждое число в подмассивах arr
Tests
tests:
- text: <code>multiplyAll([[1],[2],[3]])</code> should return <code>6</code>
testString: assert(multiplyAll([[1],[2],[3]]) === 6);
- text: <code>multiplyAll([[1,2],[3,4],[5,6,7]])</code> should return <code>5040</code>
testString: assert(multiplyAll([[1,2],[3,4],[5,6,7]]) === 5040);
- text: <code>multiplyAll([[5,1],[0.2, 4, 0.5],[3, 9]])</code> should return <code>54</code>
testString: assert(multiplyAll([[5,1],[0.2, 4, 0.5],[3, 9]]) === 54);
Challenge Seed
function multiplyAll(arr) {
var product = 1;
// Only change code below this line
// Only change code above this line
return product;
}
// Modify values below to test your code
multiplyAll([[1,2],[3,4],[5,6,7]]);
Solution
function multiplyAll(arr) {
var product = 1;
for (var i = 0; i < arr.length; i++) {
for (var j = 0; j < arr[i].length; j++) {
product *= arr[i][j];
}
}
return product;
}
multiplyAll([[1,2],[3,4],[5,6,7]]);