What is ‘syntactic sugar’
Syntax within a programming language that is designed to make things easier to read or to express.
What is the typeof an ES6-class?
function
Describe ES6 class syntax
class Person {
constructor(name) {
this.name = name;
}
getName() {
return this.name;
}
}What is “refactoring”?
The process of restructuring existing computer code-changing the factoring-without changing its external behavior