javascript prototype
_proto_ is an internal property of a class pointing to prototype. It is like python ways of always using double underscore to refers to internal object attributes.
Prototype in javascript is used to reference parents. You can find a very clear and good description of this here.
Comments