Posts by João Paulo A. Schmidt • 1 point
1 post
-
0
votes2
answers34
viewsA: Error in Javascript loop
const array = [[09, 13, 19, 24, 29, 46],[07, 15, 24, 41, 48, 50]] for(let i = 0; i < array.length; i++){ for(let j = 0; j < array[i].length; j++){ console.log(array[i][j]) } } I ran the Vscode…
javascriptanswered João Paulo A. Schmidt 1