A class is like a blueprint
, a description of objects to be created. Classes inherit from classes and create subclass relationships
.
Instantiation happens via new
operator. The class
keyword in Javascript is just a function
Class Foo{}
typeof Foo // 'function'