Apparently using __proto__
property is still the main way of manipulating prototype chains, even though this is not standards pliant and IE does not support it. Though you can also construct inheritance through the use of new
constructor this seems like an unnecessary plication pared to __proto__
property or standards pliant Object.getPrototypeOf
function.
Edit:
As stated in the answers, this method does exist now (ES6 standard). Be aware of the performance warning, though:
Apparently using __proto__
property is still the main way of manipulating prototype chains, even though this is not standards pliant and IE does not support it. Though you can also construct inheritance through the use of new
constructor this seems like an unnecessary plication pared to __proto__
property or standards pliant Object.getPrototypeOf
function.
Edit:
As stated in the answers, this method does exist now (ES6 standard). Be aware of the performance warning, though: https://developer.mozilla/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/setPrototypeOf
Share Improve this question edited Oct 14, 2024 at 6:29 dumbass 27.3k4 gold badges38 silver badges74 bronze badges asked Jul 1, 2012 at 12:19 JussiRJussiR 2,0753 gold badges21 silver badges23 bronze badges 1- 5 good news. it seems Object.setPrototypeOf() got into ES6 webreflection.blogspot.pt/2013/05/… – Paulo R. Commented May 16, 2013 at 12:27
2 Answers
Reset to default 9It is part of the ES6 harmony draft:
https://developer.mozilla/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/setPrototypeOf
I am using it now in the latest release of Chrome.
var proto = {
foo: 'bar'
};
var object = {};
Object.setPrototypeOf(object, proto);
console.assert(object.foo == 'bar');
Brendan Eich says this here:
Object.setPrototypeOf is not going to happen. Writable __proto__ is a giant pain to implement (must serialize to cycle-check) and it creates all sorts of type-confusion hazards. You may think you want it as a low-level sharp instrument. JS is not that language. Higher-level forms for classes and mixins seem much better and do not involve such sharp edges.