How to get the rows and columns of a matrix (2D array) in JavaScript

1 Answer

0 votes
const arr = [
  [1, 2, 3, 5, 6],
  [4, 5, 6, 5, 6],
  [7, 8, 9, 5, 6]
];

const rows = arr.length;
const cols = arr[0].length;

console.log(rows); 
console.log(cols); 

  
    
    
/*
run:
    
3
5
    
*/

 



answered Feb 21, 2021 by avibootz

Related questions

2 answers 231 views
1 answer 226 views
1 answer 252 views
1 answer 189 views
2 answers 237 views
...