I'm not new to JavaScript, but I never could understand a certain thing about its prototypal inheritance.
Say we have Parent and Child "classes" (functions Parent and Child that create objects). To be able to create Children, we first need to
Child.prototype = new Parent();
Here is the difficulty: by assigning the prototype to Child, we get one more object Parent that doesn't do anything in our code, just shares its properties with Children. But the constructor of Parent is still called! If parent represents, for example, a certain UI object, then in our application we will have one more such object which we actually didn't wish to create! And that, of course, may and will affect the state of our application.
I see a way to cope with this: to pass certain arguments to Parent constructor indicating that the object we are creating is just for prototype, not for general use, like:
RedButton.prototype = new Button(FOR_PROTO_ONLY);
and then in Parent constructor decide whether to do any displayable stuff or not. But this is such an ugly workaround!
In class-oriented languages, e.g. Java, we don't have such issue at all because inheriting doesn't suppose calling any additional functions. What should I do to not use such ugly techniques in my programs and still be able to create a nice-looking prototype hierarchy?