Typed Classes
Classes exist as both a value and a type
create instance of an object
refer to the object type
custom classes can restrict access to method to expose less methods to reduce complexity & reduce risk of breaking bugs
protected
Modifier to restrict Method to class
or child classes
private
JS Keyword & Property Modifier to restrict Method to within class
only
public
(default) Modifier for Methods, callable anywhere