In ES6, what is the difference between declaring methods in a class and in an object literal?

  • Methods in a class are enumerable, while methods in an object literal are not
  • Methods in a class are prototype methods, while methods in an object literal are not
  • There is no difference between declaring methods in a class and in an object literal
  • Methods in an object literal have access to the 'super' keyword
The key distinction is that methods in a class are prototype methods, meaning they are shared among all instances of the class. In contrast, methods in an object literal are not shared among instances.
Add your answer
Loading...

Leave a comment

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