is there corresponding stuff in IE for Firefox __proto__ ?
Asked
Active
Viewed 346 times
1
-
http://stackoverflow.com/questions/650764/how-does-proto-differ-from-constructor-prototype – Dennis G Mar 04 '11 at 08:29
2 Answers
1
As a getter, you can use Object.getPrototypeOf, introduced by ECMAScript5 and supported since IE9.
Moreover, __proto__ and Object.setPrototypeOf are supported since IE11.