I wrote two classes the other day, where I needed to override and call the overridden method (getQuery).

//parent
function SimpleUser() {
   this.firstName = "X";
}

SimpleUser.prototype.getQuery = function(sub) {
  //solution for not getting undefined variables
  var that = sub || this; 
  var query = "first="+that.firstName;
  return query;
}

//child
function User() {
  //extends 
  this.base = SimpleUser;
  //super()
  this.base();

  //prints "X"
  console.log(this.firstName);

  this.lastName = "Y";
}

//override
User.prototype.getQuery = function() {
  //call parent
  var query = SimpleUser.prototype.getQuery.call(this);
  query += "&last="+this.lastName;
  return query;
}

//prints "first=X"
console.log(new SimpleUser().getQuery());

//prints "first=undefined&last=Y" if I don't use parameter "sub"
console.log(new User().getQuery());

When I call the method "getQuery" from the sub-class, all variables in the parent are undefined. If I call them from the constructor of the sub-class, they're fine.

I solved the problem by passing the sub-class as parameter and just checking who's asking.

Can someone please explain to me why this happens and help me to find a better solution than what I had to do with passing the sub-class itself as a parameter?

Thank you!

link|improve this question
It seems to work, also without sub: jsfiddle.net/qqeV3. – pimvdb Dec 3 '11 at 16:22
Why haven't you used var User = new SimpleUser(); – StuperUser Dec 3 '11 at 16:24
1  
Strange. I don't see why it should not work (though you do inheritance using uncommon idioms, super constructor call would normally be SimpleUser.call(this) without base and you also miss User.prototype = Object.create(SimpleUser.prototype), since it is normal to chain prototypes; but none of it should be the problem for your functionality). – herby Dec 3 '11 at 16:25
When I copy/paste your code, I get first=X&last=Y as the result of the last console.log. So what's the problem? – RightSaidFred Dec 3 '11 at 16:32
show 5 more comments
feedback

1 Answer

up vote 0 down vote accepted

Javascript doesn't have classes. It only has objects. And objects inherits from their prototypes, which in turn inherits from their prototypes and so forth. If you want to learn more about making inheritance in javascript take a look at http://phrogz.net/js/classes/OOPinJS2.html. Though this is doable, if you want to mimic classes and class-inheritence in javascript I recommend using a framework designed for this such as MooTools.

link|improve this answer
2  
But that code as posted actually works fine. – Pointy Dec 3 '11 at 16:33
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.