计算对象的长度

时间:2013-06-19 10:58:06

标签: javascript

如何计算物体的长度?

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


Object.hasOwnProperty("length") // true

但是hasOwnProperty()如何工作?对象没有这个方法,方法是在它的原型

1 个答案:

答案 0 :(得分:1)

您可以使用

Object.keys({0:"a",1:"b"}).length;