“matriz matriz javascript” Código de respuesta

JavaScript Crear matriz

// 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

matriz js 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

matriz matriz javascript

1
2
3
4
5
Hurt Hamster

Respuestas similares a “matriz matriz javascript”

Preguntas similares a “matriz matriz javascript”

Más respuestas relacionadas con “matriz matriz javascript” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código