InterviewSolution
Saved Bookmarks
| 1. |
How can you create a class in ES6? |
|
Answer» The KEYWORD CLASS is used to create a class in ES6. We can use class expressions or class declarations to INCLUDE classes in our code. Only functions and constructors are allowed in a class definition. These components are collectively referred to as the class's DATA members. Constructors in classes are responsible for ALLOCATING memory to the class's objects. A class's functions are in charge of performing actions on the objects. Syntax: In ES5 var varName = new className { }Syntax: In ES6 (Using class keyword) class className{ } |
|