If you are implementing a function that will be used as a callback, which might benefit from lexical scoping of this, what type of function would you choose?

  • Arrow function
  • Regular function
  • Class method
  • Anonymous function
Arrow functions are suitable for callbacks, as they capture the "this" value from their enclosing scope, providing a clean and concise way to maintain lexical scoping.
Add your answer
Loading...

Leave a comment

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