diff --git a/open-in-web-browser.html b/open-in-web-browser.html index 867fb9a..9b5f5d7 100644 --- a/open-in-web-browser.html +++ b/open-in-web-browser.html @@ -3365,22 +3365,6 @@

6.9 : Extending JavaScript Built-in's and Web API Constructors/Classes using

Even, JavaScript web API's like the DOM can be extended.

- -
- -

- Notes: -

-
    -
  1. If you run the above code through Babel is will break. Sub-classing constructors/classes - has to be supported natively. Transpiling and polyfilling - can't help and in fact, will break the code. The environment either supports extending - built-in classes/object or it does not. If you extend natives make sure you are not also - babel'ifying/transpiling the code.
  2. -
-
- -