标签: javascript arrays
我似乎无法理解为什么我的代码返回false。我试着谷歌搜索答案但没有找到任何答案。
let board = [[1,1,1], [1,1,1], [1,1,1]]; for (row of board) { console.log(row == [1, 1, 1]) }
即使每个“行”都是[1,1,1],它也会记录错误。这是为什么?