vote up 0 vote down star

I want to create sub-class B that inherits from super-class A. my code here:

function A(){
    this.x = 1;
}

B.prototype = new A;
function B(){
    A.call(this);
    this.y = 2;
}
b = new B;
Console.log(b.x + " " + b.y );

when run it,it show B is undefined.

flag

2 Answers

vote up 0 vote down
B.prototype = new A;
function B(){
    A.call(this);
    this.y = 2;
}

should be

function B(){
    A.call(this);
    this.y = 2;
}
B.prototype = new A;
link|flag
thanks in advance. – chanthou Jul 30 at 3:56
2  
in advance of what – Luca Matteis Jul 30 at 3:57
advance of thanks – chanthou Jul 30 at 4:10
vote up 3 vote down

You must define the B constructor function before trying to access its prototype:

function A(){
  this.x = 1;
}

function B(){
  A.call(this);
  this.y = 2;
}

B.prototype = new A;

b = new B;
console.log(b.x + " " + b.y );  // outputs "1 2"
link|flag

Your Answer

Get an OpenID
or

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