例如,
$(document) // [ #document ] : document object in array
typeof $(document) // "object"
$(document).constructor // function Object() { [native code] } or function (a,b) { return some function; }
如果 value 是数组,它必须是 Array 构造函数。
它不是像对象一样的数组。因为像对象一样的数组只有数组属性,而不像 []。
怎么会这样?
补充:如果可以,请显示简单的示例代码。喜欢
a = ...
console.log(a) // [ ... ]
console.log(a.constructor) // function Object or something