Understanding nested for loops in javascript

前端 未结 7 1429
梦毁少年i
梦毁少年i 2021-01-30 09:39

I\'m learning JavaScript at the moment on freecodecamp and they have an example for nested for loops in one of their excercises:

 var arr = [[1,2], [3,4], [5,6]]         


        
7条回答
  •  失恋的感觉
    2021-01-30 10:13

    function multiplyAll(arr) {
       var product = 1;
       // Only change code below this line
       for (var i = 0; i < arr.length; i++) {
         for (var j = 0; j < arr[i].length; j++) {
           product *= arr[i][j];
           console.log(product)
         }
       }
       // Only change code above this line
       return product;
     }
     // Modify values below to test your code
     multiplyAll([[1], [2], [3]])
     //multiplyAll([[1, 2], [3, 4], [5, 6, 7]]);
     //multiplyAll([[5, 1], [0.2, 4, 0.5], [3, 9]])
    

提交回复
热议问题