What is “syntactic sugar”?
Syntactic sugar is syntax within a programming language that is designed to make things easier to read or express
What is the typeof an ES6 class?
A function
Describe ES6 class syntax.
Class keyword, name of class, followed by curly braces for the class declaration. Within the curly braces, constructor keyword followed by names in parentheses, then curly braces. Can also have a function followed by curly braces.
What is “refactoring”?
Refactoring is the process of restructuring existing code without changing its external behavior