Can ES6 class methods be used as constructors for creating new objects?
- Yes, any class method can be used as a constructor
- No, only the constructor method can be used as a constructor
- Yes, but only static methods can be used as constructors
- No, ES6 classes cannot be used to create new objects
In ES6 classes, only the constructor method can be used as a constructor to initialize new objects. Other methods, including static methods, are not used for object instantiation.
Loading...
Related Quiz
- How does a pure function handle dependencies or external variables?
- In an async function, what happens to unhandled exceptions?
- Question 2: In a large-scale application, how does the use of absolute imports in ES6 modules affect maintainability and refactoring compared to relative imports?
- Default parameters in a function are used when no argument or ________ is passed.
- How does chaining array methods like map and filter affect performance?