“So erstellen Sie ein zweidimensionales Array in JS” Code-Antworten

JS -Array zweidimensional

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

2D -Array JavaScript

var items =[
     
  [1,        2,       3],//this is row 0
  [4,        5,       6],//this is row 1
  [7,        8,       9] //this is row 2
//cullom 0   cullom 1   cullom2
  
]

console.log(/* variable name */ items[/*row*/ 0][/*cullom*/ 0]);
Alive Aardvark

So erstellen Sie ein zweidimensionales Array in JS

const m = 4;
const  n = 5;
let arr = new Array(m); // create an empty array of length n
for (var i = 0; i < m; i++) {
  arr[i] = new Array(n); // make each element an array
}
console.log(arr); //  Output: [ [ <5 empty items> ], [ <5 empty items> ], [ <5 empty items> ], [ <5 empty items> ] ]
Upset Unicorn

Ähnliche Antworten wie “So erstellen Sie ein zweidimensionales Array in JS”

Fragen ähnlich wie “So erstellen Sie ein zweidimensionales Array in JS”

Weitere verwandte Antworten zu “So erstellen Sie ein zweidimensionales Array in JS” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen