物体的长度是如何计算的?
console.log({0:"a",1:"b"}.length)//returns undefined but object has the length property
Object.hasOwnProperty("length") // true
但是 hasOwnProperty() 怎么能工作呢?对象没有这个方法,该方法在它的原型中
物体的长度是如何计算的?
console.log({0:"a",1:"b"}.length)//returns undefined but object has the length property
Object.hasOwnProperty("length") // true
但是 hasOwnProperty() 怎么能工作呢?对象没有这个方法,该方法在它的原型中