What is the correct syntax to create an instance of a class in ES6?
- let obj = new Class();
- let obj = create(Class);
- let obj = Object.create(Class);
- let obj = Class.create();
The correct syntax to create an instance of a class in ES6 is to use the new keyword followed by the class name and parentheses, like this: let obj = new Class();. The new keyword is essential for creating instances and invoking the class constructor.
Loading...
Related Quiz
- Q2: If you are managing a group of user objects, each with associated metadata, how would using a WeakMap affect memory management compared to using a Map?
- To export multiple features from a single module, use export { feature1, feature2 as _______ };.
- How can default parameters be used to create polymorphic functions in JavaScript?
- The __________ file in a module directory helps in defining the entry point for the module in ES6.
- If you need to access both the index and value in an array using for...of, use __________ to convert the array into an iterable of index-value pairs.