Contact: aviboots(AT)netvision.net.il
39,855 questions
51,776 answers
573 users
const rows = 3; const cols = 2; const arr = [...Array(rows)].map(x=>Array(cols).fill()); console.log(arr); /* run: [ [ undefined, undefined ], [ undefined, undefined ], [ undefined, undefined ] ] */
const rows = 3; const cols = 2; const arr = [...Array(rows)].map(x=>Array(cols).fill(0)); console.log(arr); /* run: [ [ 0, 0 ], [ 0, 0 ], [ 0, 0 ] ] */