オブジェクトの長さはどのように計算されますか?
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() はどのように機能するのでしょうか? オブジェクトにはこのメソッドがありません。メソッドはプロトタイプにあります。