is there corresponding stuff in IE for Firefox __proto__?
is there correspond开发者_运维知识库ing stuff in IE for Firefox __proto__
?
Short answer: No.
More characters
As a getter, you can use Object.getPrototypeOf
, introduced by ECMAScript5 and supported since IE9.
Moreover, __proto__
and Object.setPrototypeOf
are supported since IE11.
精彩评论