为什么 2 == [2] 在 JavaScript 中?
2022-08-30 02:03:39
我最近在JavaScript中发现了这一点。事实证明,这个怪癖有几个有趣的后果:2 == [2]
var a = [0, 1, 2, 3];
a[[2]] === a[2]; // this is true
同样,以下方法有效:
var a = { "abc" : 1 };
a[["abc"]] === a["abc"]; // this is also true
更奇怪的是,这也有效:
[[[[[[[2]]]]]]] == 2; // this is true too! WTF?
这些行为在所有浏览器中似乎都是一致的。
任何想法为什么这是一个语言功能?
以下是此“功能”的更疯狂的后果:
[0] == false // true
if ([0]) { /* executes */ } // [0] is both true and false!
var a = [0];
a == a // true
a == !a // also true, WTF?