I wanted to improve my understanding of subclassing so I decided to research the documentation and blog about it. In JavaScript, subclassing is a way for a class to inherit data, variables and functions, from another class. The class that is being inherited from is referred to as the superclass…