What is “syntactic sugar”?
Syntax designed to make things easier to read or to express.
What is the typeof an ES6 class?
Function.
Describe ES6 class syntax.
class keyword;
class's name;
opening { ;
constructors;
methods;
closing } ;What is “refactoring”?
Rewrite the code with less complexity but with the same external behavior.