I am learning about prototypical inheritance in JavaScript and am confused by the difference (if any) between Object.getPrototypeOf(obj) and obj.constructor.prototype. Is there one? Or are these two referencing the same thing?

link|improve this question

64% accept rate
1  
You can upvote helpful questions and answers and also accept answers that solve your own questions. This helps organize SO and also is a small reward for those who helped you. – missingno Nov 6 '11 at 2:47
1  
@missingno His questions so far are quite interesting though... – Šime Vidas Nov 6 '11 at 3:04
1  
@ŠimeVidas: He still deserves the "0%" boilerplate comment though :P – missingno Nov 6 '11 at 3:09
feedback

2 Answers

up vote 5 down vote accepted

NO

It returns the internal [[Prototype]] value.

For example:

var o = Object.create(null);
Object.getPrototypeOf(o); // null
o.constructor.prototype; // error

var p = {};
var o = Object.create(p);
Object.getPrototypeOf(o); // p
o.constructor.prototype; // Object.prototype

o.constructor.prototype only works with objects created through new ConstructorFunction or where you have manually set the Prototype.prototype.constructor === Prototype relationship.

link|improve this answer
feedback

No. In particular, the constructor property of an object is not always set to what you would consider "correct."

An example of where getPrototypeOf works but .constructor.prototype does not:

function F() { }
F.prototype = {
   foo: "bar"
};

var obj = new F();

assert.equal(obj.constructor.prototype, Object.prototype);
assert.equal(Object.getPrototypeOf(obj), F.prototype);

It also fails for typical prototypal inheritance scenarios:

// G prototypally inherits from F
function G() { }
G.prototype = Object.create(F.prototype);
// or: G.prototype = new F();

var obj2 = new G();

assert.equal(obj2.constructor.prototype, Object.prototype);
assert.equal(Object.getPrototypeOf(obj2), G.prototype);
assert.equal(Object.getPrototypeOf(Object.getPrototypeOf(obj2)), F.prototype);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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