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 firstcol = arr.map(function(value,index) { return value[0]; }); console.log(firstcol); /* run: [1, 4, 7] */