What is “syntactic sugar”?
syntactic sugar is syntax within a programming language that is designed to make things easier to read or to express.
What is the typeof an ES6 class?
object
Describe ES6 class syntax.
class classname {
constructor(params) {
this.params = params;
}
}What is “refactoring”?
code refactoring is the process of restructuring existing computer code—changing the factoring—without changing its external behavior.