标签: javascript
如何计算物体的长度?
console.log({0:"a",1:"b"}.length)//returns undefined but object has the length property Object.hasOwnProperty("length") // true
但是hasOwnProperty()如何工作?对象没有这个方法,方法是在它的原型
答案 0 :(得分:1)
您可以使用
Object.keys({0:"a",1:"b"}).length;