gpt4 book ai didi

javascript - JavaScript 中数组和具有数字属性的对象相等吗?

转载 作者:行者123 更新时间:2023-12-01 02:28:15 25 4
gpt4 key购买 nike

有人可以向我解释一下为什么以下内容是正确的:

let foo = { 
A: [ 1, 2 ]
}
let bar = {
"A": {
"0": "1",
"1": "2"
}
}
assert.deepEqual(foo, bar);

最佳答案

the documentation说:

Only enumerable "own" properties are considered. The assert.deepEqual() implementation does not test the [[Prototype]] of objects or enumerable own Symbol properties. For such checks, consider using assert.deepStrictEqual() instead.

assert.deepStrictEqual()函数也会检查原型(prototype),并且

assert.deepStrictEqual(foo, bar);

将返回 false。

关于javascript - JavaScript 中数组和具有数字属性的对象相等吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48546691/

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