What is “syntactic sugar”?
a way to design to make things easier to read and express. (example: SQL JOIN = INNER JOIN)
What is the type of an ES6 class?
It is a function
Describe ES6 class syntax.
class name{constructor(type){this.type=type} and method. check your notes!!!
What is “refactoring”?
Restructuing existing computer code for better readability and reduce complexity.