“Yan Nesting para loops” Respostas de código

Yan Nesting para loops

const arr = [
  [1, 2], [3, 4], [5, 6]
];

for (let i = 0; i < arr.length; i++) {
  for (let j = 0; j < arr[i].length; j++) {
    console.log(arr[i][j]);
  }
}
Yan Lamberti

Yan Nesting para loops

const arr = [
  [1, 2], [3, 4], [5, 6]
];

for (let i = 0; i < arr.length; i++) {
  for (let j = 0; j < arr[i].length; j++) {
    console.log(arr[i][j]);
  }
}
Yan Lamberti

Respostas semelhantes a “Yan Nesting para loops”

Procure respostas de código populares por idioma

Procurar outros idiomas de código