Answers for "array of arrays in js"

4

how to read 2 dimensional array in javascript

activities.forEach((activity) => {
    activity.forEach((data) => {
        console.log(data);
    });
});
Posted by: Guest on May-09-2020
2

javascript multidimensional array

var items = [
  [1, 2],
  [3, 4],
  [5, 6]
];
console.log(items[0][0]); // 1
console.log(items[0][1]); // 2
console.log(items[1][0]); // 3
console.log(items[1][1]); // 4
console.log(items);
Posted by: Guest on October-09-2020
-1

array of array

String[][] arrays = new String[][] { array1, array2, array3, array4, array5 };
Posted by: Guest on April-08-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language