0

物体的长度是如何计算的?

console.log({0:"a",1:"b"}.length)//returns undefined but object has the length property


Object.hasOwnProperty("length") // true

但是 hasOwnProperty() 怎么能工作呢?对象没有这个方法,该方法在它的原型中

4

1 回答 1

1

您可以使用

Object.keys({0:"a",1:"b"}).length;    
于 2013-06-19T11:04:59.897 回答