I\'ve read some articles about V8\'s hidden classes. However, I still have a few questions in my head:
If, let\'s say, there are two objects:
var a =
If you download V8 and build the debug version you can pass those objects randomly to a function in an infinite loop and have it print the optimized disassembly and see if they were treated as having the same class.
In first case you are right that they will have different hidden classes.
In the second case you are wrong, you will end up with 4 different classes, so none of them share a class.
Firstly, fields that are added to an object outside constructor or object literal, will not be stored directly
on the object but in an array external to the object. So that's why b will have different hidden class from everyone.
A unique constructor will construct objects of unique class, so a will have different hidden class from everyone. The object
literals have properties in different order which is the same case as in the first case.
However object literals with exactly the same layout will share a hidden class, so if we added object e:
var e = {
x: 32,
y: -15
};
Then c would share same hidden class with e.
In third case they will have different hidden classes for the same reason as in the second case, unique constructors construct objects of different classes.
You might also find this interesting https://codereview.stackexchange.com/a/28360/9258