我最近在 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?