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

1 Answer

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

const cols = arr[0].length;
   
const lastcol = arr.map(function(value,index) { return value[cols - 1]; });
   
console.log(lastcol); 
   
   
     
       
       
/*
run:
       
[9, 8, 7]
       
*/

 



answered Feb 21, 2021 by avibootz

Related questions

...