Say I created an object like this
var obj = {M:"soober"};
its [[Prototype]] internal property points to Object.prototype.
Now, if I run...
Object.seal(Object.prototype);
...does this make all objects in the program immutable?
I need some clarity in this matter.