JS定义二维数组

不会相互牵连的二维数组

rows: 行数
cols:列数

let arr = new Array(rows).fill(0).map(() => new Array(cols, initValue));

你可能感兴趣的:(web前端,javascript)