How to get the last row first column item from a matrix (2D array) in JavaScript

1 Answer

0 votes
const arr = [
  [1, 2, 3, 0, 10],
  [4, 5, 6, 13, 11],
  [7, 8, 9, 14, 12]
];
   
const rows = arr.length;

const item = arr[rows - 1][0]
   
console.log(item); 
   
     
     
    
/*
run:
    
7
    
*/

 



answered Feb 22, 2021 by avibootz
...