跳到主要内容

认识

创建

方案A

let row=3;
let col=3;
const matrix=new Array(row).fill(0).map(value=>new Array(col).fill(0))