How to find 2D array (matrix) dimensions (rows, cols) in Node.js

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 Jan 13, 2022 by avibootz

Related questions

2 answers 285 views
1 answer 244 views
1 answer 256 views
1 answer 184 views
...