, this , , .
call apply ObjX this ObjY:
function ObjY(a,b,c) {
ObjX.call(this, a, b * 12);
this.$c = c;
}
ObjX this, , , , this ObjY.
call , this , , $c.
:. , prototype , , , .
, prototype [[Prototype]], .
[[Prototype]] new ( [[Construct]]), ( , Mozilla, obj.__proto__;, ECMAScript 5, Object.getPrototypeOf, ).
, , [[Prototype]] , this, prototype.
, @Anurag, ObjY.prototype ObjX:
function ObjY(a,b,c) {
ObjX.call(this, a, b * 12);
this.$c = c;
}
ObjY.prototype = new ObjX();
ObjY.prototype.constructor = ObjY;
, ObjY , ObjX.prototype, , , ObjY.prototype.constructor, , ObjX.
: