-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnested_for_loop.js
38 lines (35 loc) · 1 KB
/
nested_for_loop.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/*
NESTING FOR LOOPS
If you have a multi-dimensional array, you can use the same logic as
the prior waypoint to loop through both the array and any sub-arrays.
Here is an example:
var arr = [
[1,2], [3,4], [5,6]
];
for (var i=0; i < arr.length; i++) {
for (var j=0; j < arr[i].length; j++) {
console.log(arr[i][j]);
}
}
This outputs each sub-element in arr one at a time. Note that for the
inner loop, we are checking the .length of arr[i], since arr[i] is
itself an array.
Instructions
Modify function multiplyAll so that it multiplies the product
variable by each number in the sub-arrays of arr
*/
function multiplyAll(arr) {
var product = 1;
// Only change code below this line
for (var i = 0; i < arr.length; i++) {
console.log(arr[i]);
for (var j = 0; j < arr[i].length; j++) {
console.log(arr[i][j]);
console.log(product *=arr[i][j]);
}
}
// Only change code above this line
return product;
}
// Modify values below to test your code
multiplyAll([[1,2],[3,4],[5,6,7]]);