Contact: aviboots(AT)netvision.net.il
38,169 questions
49,785 answers
573 users
const matrix = [ [11, 32, 13, 81], [20, 80, 50, 990] ]; console.log("rows: " + matrix.length); console.log("cols: " + matrix[0].length); /* run: rows: 2 cols: 4 */