“Matrix Array JavaScript” Respostas de código

JavaScript Create Matrix

// this will create a 2D array of 'none' word
var size = 3;
var myArray = Array(size).fill( Array(size).fill("none") );

console.log(myArray);
/*
[
	["none", "none", "none"],
	["none", "none", "none"],
	["none", "none", "none"]
]
*/
rawand-faraidun

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

Matrix Array JavaScript

1
2
3
4
5
Hurt Hamster

Respostas semelhantes a “Matrix Array JavaScript”

Perguntas semelhantes a “Matrix Array JavaScript”

Mais respostas relacionadas para “Matrix Array JavaScript” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código