Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
function Gadget(name, color)
{
   this.name = name;
   this.color = color;
}

Gadget.prototype.rating = 3

var newtoy = new Gadget("webcam", "black")

newtoy.constructor.prototype.constructor.prototype.constructor.prototype 

it will returns always the object with rating = 3

but if I do

newtoy.__proto__.__proto__.__proto__

here the chain end up with null

So why do that difference?

And in IE how can I check the null if there is not a __proto__ property?

share|improve this question
6  
This graph diagram will help you understand the difference between prototype and proto. You can follow the proto chain from newtoy object, and then you will realize why the 3rd Proto from newtoy is null. – bits Oct 9 '12 at 1:21
Also its clear from the diagram that newtoy.prototype is not equal to newtoy.constructor.prototype and therefore newtoy.constructor.prototype will not have property called rating. Similarly newtoy.constructor.prototype.constructor.property will also not have property called rating. – bits Oct 9 '12 at 1:28
Typo in last comment: therefore newtoy.constructor.prototype will have property called rating. Similarly newtoy.constructor.prototype.constructor.property will also have property called rating. – bits Mar 20 at 0:11

4 Answers

up vote 47 down vote accepted

I've been trying to wrap my head around this recently and finally came up with this "map" that I think sheds full light over the matter

enter image description here

I know I'm not the first one making this up but it was more interesting figuring it out that finding it :-). Anyway, after that I found e.g. this another diagram that I think says basicly the same:

Javascript object layout

The most surprising thing for me was discovering that Object.__proto__ points to Function.prototype, instead of Object.prototype, but I'm sure there's a good reason for that :-)

I paste the code mentioned in the image here as well for if anyone wants to test it. Note that some properties are added to the objects for making easy to know where we are after some jumps:

Object.O1='';
Object.prototype.Op1='';

Function.F1 = '';
Function.prototype.Fp1 = '';

Cat = function(){};
Cat.C1 = '';
Cat.prototype.Cp1 = '';

mycat = new Cat();
o = {};

// EDITED: using console.dir now instead of console.log
console.dir(mycat);
console.dir(o);
share|improve this answer
Great diagram - really helps visualize things! I've voted this answer up, so you should be able to attach the image now. :) – hopper Jun 28 '12 at 18:09
Done, thanks hopper :-) – utsaina Jul 15 '12 at 8:00
1  
@utsaina Very cool. Checkout another graphical representation of the code which OP posted. And I think our diagrams are in agreement in terms of technical details. – bits Oct 9 '12 at 1:31

constructor is a pre-defined [[DontEnum]] property of the object pointed to by the prototype property of a function object and will initially point to the function object itself.

__proto__ is equivalent to the internal [[Prototype]] property of an object, ie its actual prototype.

When you create an object with the new operator, its internal [[Prototype]] property will be set to the object pointed to by the constructor function's prototype property.

This means that .constructor will evaluate to .__proto__.constructor, ie the constructor function used to create the object, and as we have learned, the protoype property of this function was used to set the object's [[Prototype]].

It follows that .constructor.prototype.constructor is identical to .constructor (as long as these properties haven't been overwritten); see here for a more detailed explanation.

If __proto__ is available, you can walk the actual prototype chain of the object. There's no way to do this in plain ECMAScript3 because JavaScript wasn't designed for deep inheritance hierarchies.

share|improve this answer
That 'here' link is the gold standard. Go there if you want the full description. – Ricalsin Aug 21 '12 at 17:03
Nice catch with .constructor.prototype chaining. I was also unclear for me, while I didn't saw that .constructor is equal .__proto__.constructor. Which simply means cycling between constructor function and it's prototype. – Johnny_D May 8 at 12:03

The Prototypal Inheritance in JavaScript is based on __proto__ property in a sense that each object is inheriting the contents of the object referenced by its __proto__ property.

The prototype property is special only for Function objects and only when using new operator to call a Function as constructor. In this case, the created object's __proto__ will be set to constructor's Function.prototype.

This means that adding to Function.prototype will automatically update all objects whose __proto__ is referencing the Function.prototype.

Replacing constructor's Function.prototype with another object will not update __proto__ property for any of the already existing objects.

Note that __proto__ property should not be accessed directly, Object.getPrototypeOf(object) should be used instead.

To answer the first question, I've created a bespoke diagram of __proto__ and prototype references, unfortunately stackoverflow does not allow me to add the image with "less than 10 reputation". Maybe some other time.

share|improve this answer
I up voted your answer, so you should have at least 10 reputation now. I'd love to see your diagram. It would probably add to this slightly confusing and not well documented aspect of JS. – pseudosavant Apr 14 at 20:50
can u plz upload the diagram – Nav May 20 at 2:44

Object is Eve, and Function is Adam, Adam (Function) uses his bone (Function.prototype) to create Eve (Object). Then who created Adam (Function)? -- The Inventor of the JavaScript language :-).

According to utsaina's answer, I want to add more useful info.

The most surprising thing for me was discovering that Object.__proto__ points to Function.prototype, instead of Object.prototype, but I'm sure there's a good reason for that :-)

It should NOT be. Object.__proto__ should NOT point to Object.prototype. Instead, the instance of Object o, o.__proto__ should point to Object.prototype.

(Forgive me for using the terms class and instance in JavaScript, but you know it :-)

I think the class Object itself is an instance of Function, that's why Object.__proto__ === Function.prototype. Therefore: Object is Eve, and Function is Adam, Adam (Function) uses his bone (Function.prototype) to create Eve (Object).

Furthermore, even the class Function itself is an instance of Function itself, that is Function.__proto__ === Function.prototype, that's also why Function === Function.constructor

Further furthermore, the regular class Cat is an instance of Function, that is Cat.__proto__ === Function.prototype.

The reason for the above is, when we create a class in JavaScript, actually, we are just creating a function, which should be an instance of Function. Object and Function are just special, but they are still classes, while Cat is a regular class.

As a matter of factor, in Google Chrome JavaScript engine, the following 4:

  • Function.prototype
  • Function.__proto__
  • Object.__proto__
  • Cat.__proto__

They are all === (absolutely equal) to the other 3, and their value is function Empty() {}

> Function.prototype
  function Empty() {}
> Function.__proto__
  function Empty() {}
> Object.__proto__
  function Empty() {}
> Cat.__proto__
  function Empty() {}
> Function.prototype === Function.__proto__
  true
> Function.__proto__ === Object.__proto__
  true
> Object.__proto__ === Cat.__proto__
  true

OK. Then who creates the special function Empty() {} (Function.prototype)? Think about it :-)

share|improve this answer
Agree with that, except for the last one thing: what is function Empty() {} you refer to being equal to Function.prototype, etc?, what is the code you used in chrome console? – utsaina Jul 28 '12 at 18:32
1  
I corrected the last one thing that you pointed out. Their value is function Empty() {} in Google Chrome. I also added the console output. – Peter Lee Jul 30 '12 at 15:11

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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