Classes in ES6
August 02, 2018
ES6 gave us the ability to create classes in Javascript without using prototypes. Class based components are commonly used in React as they allow state to be stored amongst other things. To instantiate a class: Subclasses Subclasses allow us to extend existing classes.