const array = Array(5).fill('');
["", "", "", "", ""]
const matrix = Array(5).fill(0).map(()=>Array(5).fill(0));
0: (5) [0, 0, 0, 0, 0]
1: (5) [0, 0, 0, 0, 0]
2: (5) [0, 0, 0, 0, 0]
3: (5) [0, 0, 0, 0, 0]
4: (5) [0, 0, 0, 0, 0]
const array = Array(5).fill('');
["", "", "", "", ""]
const matrix = Array(5).fill(0).map(()=>Array(5).fill(0));
0: (5) [0, 0, 0, 0, 0]
1: (5) [0, 0, 0, 0, 0]
2: (5) [0, 0, 0, 0, 0]
3: (5) [0, 0, 0, 0, 0]
4: (5) [0, 0, 0, 0, 0]
本文标题:声明和初始化数组
本文链接:https://www.haomeiwen.com/subject/wnobirtx.html
网友评论