const echo = console.log;
const matrix = [[1, 2, 3], [4, 5, 6], [7, 8, 9]];
echo(matrix.length);
echo(matrix[0].length);
echo('--------------------------------------');
matrix.forEach(row => {
row.forEach(item => echo(item));
});
ATÉ 50% OFF
TÁ ACABANDO!
0 dias
0 horas
0 min
0 seg
const echo = console.log;
const matrix = [[1, 2, 3], [4, 5, 6], [7, 8, 9]];
echo(matrix.length);
echo(matrix[0].length);
echo('--------------------------------------');
matrix.forEach(row => {
row.forEach(item => echo(item));
});