In trying to understand javascript constructors, I have been looking at this question.
It seemed to me that I understood it reasonably, but, ironically, when I tried to run similar code, it did not work for me at all.
This is my code
function Car(name) {
this.Name = name;
this.Year = 1999;
}
Car.prototype.Drive = function() {
document.write("My name is '" + this.Name + "' and my year is '" + this.Year + "'. <br />");
};
SuperCar = function () { };
SuperCar.prototype = new Car();
function SuperCar(name) {
Car.call(this, name);
}
var MyCar = new Car("mycar");
var MySuperCar = new SuperCar("my super car");
MyCar.Drive();
MySuperCar.Drive();
First of all, this line
SuperCar = function () { };
was necessary for it to run at all. If I leave it out, I the error “SuperCar is undefined” at this line.
SuperCar.prototype = new Car();
I don’t really understand why declaring SuperCar as an empty function was necessary.
Secondly, when I do run the code I get this result
My name is 'mycar' and my year is '1999'.
My name is 'undefined' and my year is '1999'.
Apparently, for MySuperCar, the SuperCar(name) function is never called, but the Car() is.
Adding this line does not help
SuperCar.prototype.constructor = SuperCar;
Neither does this
SuperCar.prototype.constructor = function(name) {
Car.call(this, name);
};
(I have been running the code inside a script-tag on IE 9 and Chrome 22)
How should I properly define a SuperCar constructor taking a name parameter? Or, put it another way, how can I make the new SuperCar(“my super car”) call behave the way I expected (setting the name to “my super car”)?
You should not really create an instance of
Caras the prototype, but only create an object that inherits fromCar.prototype. For the details, see What is the reason to use the 'new' keyword at Derived.prototype = new Base. Instead, useYour problem is that your
SuperCars are created by the empty function – which returns an object without any properties. Yet, they inherit fromnew Car(), whosenameisundefined. This happened in your fiddle because the function declaration (beginning with thefunctionkeyword, check out this explanation) is hoisted (available everywhere in the scope) and overwritten by the lineso that your
SuperCarconstructor does not call theCarconstructor any more. Fixed fiddle