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

1 Answer

0 votes
const arr = [
  [1, 2, 3, 5, 6],
  [4, 5, 1, 5, 6],
  [7, 8, 9, 5, 0]
];
 
const rows = arr.length;
const cols = arr[0].length;
 
console.log(rows); 
console.log(cols); 
 
   
     
     
/*
run:
     
3
5
     
*/

 



answered Feb 22, 2022 by avibootz

Related questions

...