gpt4 book ai didi

javascript填充圆形数组

转载 作者:行者123 更新时间:2023-11-29 19:02:17 25 4
gpt4 key购买 nike

<分区>

我正在尝试创建一个 0 初始化的二维数组。我有两个应该相同的测试,但它们不是。对 test1[x] 的任何修改都会导致所有 test1[x] 条目匹配。为什么test1的所有子数组都一样?

注意:在codepen上运行这个,第一个say [circular object Arrray]之后的所有子数组

代码笔链接:https://codepen.io/tannyr/pen/qXLmeG?editors=1111

var test1 = Array(2).fill(Array(2).fill(0))

var test2 = [[0,0],[0,0]]

test1[0][0] = 1 // <= Should edit a single value
test2[0][0] = 1

console.log(test1[0], test1[1]) // [1, 0] [1, 0] <= Should match test 2
console.log(test2[0], test2[1]) // [1, 0] [0, 0]

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