How to prevent Javascript super constructor calling a method overridden by a derived class?
I'm new to JS and implementing a polymorphic class hierachy. It appears that within the super constructor (when called from a derived constructor), 'this' refers to the derived class, not the super class. So, when the super constructor calls a…