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.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *