There are other examples, but for the sake of simplicity let's take the length
property, what's that doing here:
[].hasOwnProperty("length")
//==> true
As we know, array's length
property resides on Array.prototype
so it's readily accessible from any array instance just by walking up the prototype chain, why copy it down? Has it something to do with the specific implementation in the browser? (code example above executed in chrome console). Even MDN clearly says that: "...methods and properties are not copied from one object to another in the prototype chain. They are accessed by walking up the chain..."