Files
freeCodeCamp/curriculum/challenges/italian/02-javascript-algorithms-and-data-structures/basic-javascript/nesting-for-loops.md
camperbot b3af21d50f chore(i18n,curriculum): update translations (#42487)
* chore(i18n,curriculum): update translations

* chore: Italian to italian

Co-authored-by: Nicholas Carrigan <nhcarrigan@gmail.com>
2021-06-14 11:34:20 -07:00

1.7 KiB

id, title, challengeType, videoUrl, forumTopicId, dashedName
id title challengeType videoUrl forumTopicId dashedName
56533eb9ac21ba0edf2244e1 Annidare i cicli For 1 https://scrimba.com/c/cRn6GHM 18248 nesting-for-loops

--description--

Se disponi di un array multidimensionale, è possibile utilizzare la stessa logica del punto precedente per iterare sia attraverso l'array che attraverso i suoi sottoarray. Ecco un esempio:

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]);
  }
}

Questo invia alla console ogni elemento presente in arr, uno alla volta. Nota che nel ciclo interno leggiamo la .length di arr[i], dal momento che arr[i] è esso stesso un array.

--instructions--

Modifica la funzione multiplyAll in modo che restituisca il prodotto di tutti i numeri nei sotto-array di arr.

--hints--

multiplyAll([[1],[2],[3]]) dovrebbe restituire 6

assert(multiplyAll([[1], [2], [3]]) === 6);

multiplyAll([[1,2],[3,4],[5,6,7]]) dovrebbe restituire 5040

assert(
  multiplyAll([
    [1, 2],
    [3, 4],
    [5, 6, 7]
  ]) === 5040
);

multiplyAll([[5,1],[0.2, 4, 0.5],[3, 9]]) dovrebbe restituire 54

assert(
  multiplyAll([
    [5, 1],
    [0.2, 4, 0.5],
    [3, 9]
  ]) === 54
);

--seed--

--seed-contents--

function multiplyAll(arr) {
  var product = 1;
  // Only change code below this line

  // Only change code above this line
  return product;
}

multiplyAll([[1,2],[3,4],[5,6,7]]);

--solutions--

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]]);