Meh;
var Dog = function() {
this.say = function( name ) {
return name;
}
};
var Animal = function() {
this.inherit = Dog;
this.inherit();
};
var pet2 = new Animal();
pet2.say("bob");
Something about writing on a whiteboards.
Of course, there’s load of different ways you could write this, meh.
Recent Comments