How to find 2D array (matrix) dimensions (rows, cols) in JavaScript

1 Answer

0 votes
const matrix = [
  		[11, 32, 13, 81],
  		[20, 80, 50, 990]
];
  
console.log("rows: " + matrix.length);
console.log("cols: " + matrix[0].length);
 
 
 
 
/*
run:
  
"rows: 2"
"cols: 4"
   
*/

 



answered Apr 14, 2018 by avibootz
edited Jan 13, 2022 by avibootz

Related questions

1 answer 274 views
2 answers 434 views
1 answer 313 views
1 answer 336 views
1 answer 246 views
...