Understanding nested for loops in javascript

前端 未结 7 1513
梦毁少年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:30

    function multiply(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;
    }
    

提交回复
热议问题