One of the new features in ES6 is the addition of the `class` keyword.
To be clear, CLASSES DO NOT REALLY EXIST in JavaScript. All the Class functionality is still just a syntactic wrapper around Objects and the JavaScript Prototype chain.
However, that doesn't mean you can't use them to write your code.