What is a static method in an ES6 class?

  • A method that can only be called on instances of the class
  • A method that belongs to the class rather than an instance
  • A method that is defined using the static keyword
  • A method that cannot be accessed outside the class
In ES6, a static method is a method that belongs to the class itself rather than an instance. It is defined using the static keyword and can be called on the class itself, not on instances. This allows you to perform operations that are not specific to any instance but are related to the class as a whole.
Add your answer
Loading...

Leave a comment

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