What is the result of referencing this inside a static method in an ES6 class?

  • It refers to the instance of the class
  • It refers to the class itself
  • It causes a runtime error
  • It depends on the context in which the static method is called
In a static method of an ES6 class, this refers to the class itself, not to an instance of the class. Static methods are called on the class, not on instances, so they don't have access to instance-specific properties or methods.
Add your answer
Loading...

Leave a comment

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