“Criando uma matriz 2D em JavaScript” Respostas de código

JS Array bidimensional

// declaration of a two-dimensional array
// 5 is the number of rows and 4 is the number of columns.
const matrix = new Array(5).fill(0).map(() => new Array(4).fill(0));

console.log(matrix[0][0]); // 0
Evergreen Tomato

Criando uma matriz 2D em JS

var x = new Array(10);

for (var i = 0; i < x.length; i++) {
  x[i] = new Array(3);
}

console.log(x);
Obedient Ox

Criando uma matriz 2D em JavaScript

var [r, c] = [5, 5]; 
var m = Array(r).fill().map(()=>Array(c).fill(0));
Breakable Boar

Matriz 2D em JavaScript

function createArray(row,column) {
let arr = [];

for(var i=0; i<row; i++){
    arr[i] = [Math.floor(Math.random() * (10))];

    for(var j=0;j<column;j++){
        arr[i][j]= [Math.floor(Math.random() * (20))];
    }
}

return arr;
}

var arrVal = createArray(4, 5);

console.log(arrVal);
Outrageous Opossum

Respostas semelhantes a “Criando uma matriz 2D em JavaScript”

Perguntas semelhantes a “Criando uma matriz 2D em JavaScript”

Mais respostas relacionadas para “Criando uma matriz 2D em JavaScript” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código