Closed jackbsteinberg closed 5 years ago
Note: the prototype chaining goes up to Object but does not include it, meaning a method on Object (like toString) will not show up as Object_toString, but whatever the highest in the chain it reached before Object was (e.g. Node_toString)
toString
Object_toString
Node_toString
Note: the prototype chaining goes up to Object but does not include it, meaning a method on Object (like
toString
) will not show up asObject_toString
, but whatever the highest in the chain it reached before Object was (e.g.Node_toString
)