How does the behavior of 'this' in arrow functions affect their usage as methods in an object?

  • It does not affect 'this' binding
  • It binds 'this' to the object instance
  • It binds 'this' to the global object
  • It depends on the calling context
Arrow functions do not bind their own 'this' and instead inherit it from the surrounding scope. When used as methods in an object, this can lead to unintended behavior as 'this' will not refer to the object itself, potentially causing bugs.
Add your answer
Loading...

Leave a comment

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