gpt4 book ai didi

javascript - 将值分配给二维数组 javascript (node.js) 的问题

转载 作者:行者123 更新时间:2023-12-05 07:04:52 25 4
gpt4 key购买 nike

<分区>

我遇到的问题是,当我将二维数组中的值关联到特定行和列时,该值将存储在同一列的多行中

var Matrix = Array(3).fill(Array(3).fill(0));
console.log(Matrix);
Matrix[1][2]=1;
console.log(Matrix);
and the output is : 

/// the 2d array
[ [ 0, 0, 0 ], [ 0, 0, 0 ], [ 0, 0, 0 ] ]
/// after 'Matrix[1][2]=1'
[ [ 0, 0, 1 ], [ 0, 0, 1 ], [ 0, 0, 1 ] ]

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com