What is “syntactic sugar”?
syntax that is designed to make things easier to read and write in code
What is the typeof an ES6 class?
function
Describe ES6 class syntax.
class keyword with the name of class followed by opening curly braces to add the constructor and methods
What is “refactoring”?
the process of editing/restructuring code without changing its external behavior/functionality; intended to improve design, structure, and/or implementation of the software for better code readability.