"foo" instanceof String //=> false
"foo" instanceof Object //=> false
true instanceof Boolean //=> false
true instanceof Object //=> false
false instanceof Boolean //=> false
false instanceof Object //=> false
12.21 instanceof Number //=> false
/foo/ instanceof RegExp //=> true
// the tests against Object really don't make sense
数组字面量和对象字面量匹配…
[0,1] instanceof Array //=> true
{0:1} instanceof Object //=> true
为什么不是所有人?或者,为什么不都不呢? 那么,它们是什么实例呢?
在FF3、IE7、Opera和Chrome中也是如此。至少它是一致的。