What is a key feature of arrow functions regarding the handling of the this keyword?

  • They bind the this keyword dynamically
  • They do not have access to the this keyword
  • They always refer to the this of the global object
  • They bind the this keyword statically
Arrow functions do not have their own this context; instead, they inherit the this value from the surrounding lexical scope. This is a crucial feature that can prevent the common issue of losing the correct this context in nested functions.
Add your answer
Loading...

Leave a comment

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