Classes
We will learn how to define and use classes in JavaScript.
We'll cover the following...
Classes in JavaScript
Classes are a concept most will know from object-oriented languages, such as Java. However, ES2015 adds Java-like classes to JavaScript. In the past, object orientation could only be mimicked using the prototype
property of a function and defining its ...