In object methods, using arrow functions can lead to issues when relying on the this keyword, as it does not bind its own this, but inherits it from the ________ scope.
- Parent
- Global
- Lexical
- Block
Arrow functions inherit the this value from their lexical scope, which means the scope in which they were defined. This can lead to unexpected behavior when used in object methods.
Loading...
Related Quiz
- What is the initial state of a JavaScript Promise when it is created?
- In a function that accepts a variable number of arguments and needs to pass them to another function, how would the rest operator be applied?
- In ES6, what is the role of the 'package.json' file in module resolution?
- Arrow functions do not have their own this keyword; instead, they ________ the this value from the enclosing execution context.
- When creating a utility class with common helper functions, how would you ensure that these methods are accessible without instantiating the class?