Contact: aviboots(AT)netvision.net.il
39,924 questions
51,857 answers
573 users
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] */