I have got the following prototype chain
each with a method named
What is the common approach for calling the respective super class method?
Use .prototype..call(this). It's not only shorter, but also has the benefit of working in environments that don't support the non-standard __proto__ property.
.prototype..call(this)
__proto__