, (B.prototype = new A). , , , . , , .
! , (B.prototype = new A), !! , !!! !!!! , . , .
, . B.prototype = new A
B.prototype = Object.create(A.prototype). , 09. 09
protoProxy = function(myClass)
{
function foo(){};
foo.prototype = myClass.prototype;
return new foo();
}
Object.create. B.prototype = new A
B.prototype = protoProxy (A) 09;