diff --git a/files/en-us/learn/javascript/objects/inheritance/index.html b/files/en-us/learn/javascript/objects/inheritance/index.html index 9885f8eefd7f688..c571744d8bb0513 100644 --- a/files/en-us/learn/javascript/objects/inheritance/index.html +++ b/files/en-us/learn/javascript/objects/inheritance/index.html @@ -190,8 +190,6 @@

Trying the example out

The technique we covered here is not the only way to create inheriting classes in JavaScript, but it works OK, and it gives you a good idea about how to implement inheritance in JavaScript.

-

You might also be interested in checking out some of the new {{glossary("ECMAScript")}} features that allow us to do inheritance more cleanly in JavaScript (see Classes). We didn't cover those here, as they are not yet supported very widely across browsers. All the other code constructs we discussed in this set of articles are supported as far back as IE9 or earlier, and there are ways to achieve earlier support than that.

-

A common way is to use a JavaScript library — most of the popular options have an easy set of functionality available for doing inheritance more easily and quickly. CoffeeScript for example provides class, extends, etc.

A further exercise