Suppose I have an object foo in my JavaScript code. foo is a complex object and it is generated somewhere else. How can I change the prototype of the foo object?
My motivation is setting appropriate prototypes to objects serialized from .NET to JavaScript literals.
Suppose that I’ve written the following JavaScript code within an ASP.NET page.
var foo = <%=MyData %>;
Suppose that MyData is the result of invoking the .NET JavaScriptSerializer on a Dictionary<string,string> object.
At run-time, this becomes the following:
var foo = [{"A":"1","B":"2"},{"X":"7","Y":"8"}];
As you can see, foo becomes an array of objects. I would like to be able to initialize foo with an appropriate prototype. I do not want to modify the Object.prototype nor Array.prototype. How can I do this?
Update: ES6 now specifies Object.setPrototypeOf(object, prototype)
How you use this depends on what "the new prototype" is based. Given some object
obj:something, useObject.setPrototypeOf(obj, something),function Something() {...}with its own correspondingSomething.prototype = {...}, useObject.setPrototypeOf(obj, Something.prototype),class Something { ... }, useObject.setPrototypeOf(obj, Something.prototype).EDIT Feb. 2012: the answer below is no longer accurate.
__proto__is being added to ECMAScript 6 as "normative optional" which means it isn’t required to be implemented but if it is, it must follow the given set of rules. This is currently unresolved but at least it will be officially part of JavaScript’s specification.This question is a lot more complicated than it seems on the surface, and beyond most peoples’ pay grade in regards to knowledge of Javascript internals.
The
prototypeproperty of an object is used when creating new child objects of that object. Changing it does not reflect in the object itself, rather is reflected when that object is used as a constructor for other objects, and has no use in changing the prototype of an existing object.Objects have an internal [[prototype]] property which points to the current prototype. The way it works is whenever a property on an object is called it will start at the object and then go up through the [[prototype]] chain until it finds a match, or fail, after the root Object prototype. This is how Javascript allows for runtime building and modification of objects; it has a plan for searching for what it needs.
The
__proto__property exists in some implementations (a lot now): any Mozilla implementation, all the webkit ones I know of, some others. This property points to the internal [[prototype]] property and allows modification post-creation on objects. Any properties and functions will instantly switch to match the prototype due to this chained lookup.This feature, while being standardized now, still is not a required part of JavaScript, and in languages supporting it has a high likelihood of knocking your code down into the "unoptimized" category. JS engines have to do their best to classify code, especially "hot" code which is accessed very often, and if you’re doing something fancy like modifying
__proto__, they won’t optimize your code at all.This posts https://bugzilla.mozilla.org/show_bug.cgi?id=607863 specifically discusses current implementations of
__proto__and the differences between them. Every implementation does it differently, because it’s a hard and unsolved problem. Everything in Javascript is mutable, except a.) the syntax b.) host objects (the DOM exists outside Javascript technically) and c.)__proto__. The rest is completely in the hands of you and every other developer, so you can see why__proto__sticks out like a sore thumb.There is one thing that
__proto__allows for that is otherwise impossible to do: the designation of an objects prototype at runtime separate from its constructor. This is an important use case and is one of the primary reasons__proto__isn’t already dead. It’s important enough that it’s been a serious discussion point in the formulation of Harmony, or soon to be known as ECMAScript 6. The ability to specify the prototype of an object during creation will be a part of the next version of Javascript and this will be the bell indicating__proto__‘s days are formally numbered.In the short term, you can use
__proto__if you’re targeting browsers that support it (not IE, and no IE ever will). It’s likely it’ll work in webkit and moz for the next 10 years as ES6 won’t be finalized until 2013.Brendan Eich – re:Approach of new Object methods in ES5: