1

is there corresponding stuff in IE for Firefox __proto__ ?

Dagang
  • 24,586
  • 26
  • 88
  • 133

2 Answers2

2

Short answer: No.

More characters

Felix Kling
  • 795,719
  • 175
  • 1,089
  • 1,143
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.

Knu
  • 14,806
  • 5
  • 56
  • 89
Oriol
  • 274,082
  • 63
  • 437
  • 513