When using arrow functions with higher-order functions like Array.prototype.map, this will refer to the ________ where the arrow function was defined.
- Global Object
- Callback Function
- Scope Chain
- Enclosing Function
Arrow functions capture the this value from their surrounding lexical scope. In the context of higher-order functions, this is crucial to understanding and avoiding potential issues.
Loading...
Related Quiz
- In a Promise, if an error is not caught, it leads to a(n) ________.
- What is the purpose of the prototype chain in JavaScript?
- To import only a part of a module, use the __________ syntax in ES6.
- A common use case for currying is to create more _________ versions of existing functions.
- What is the default behavior of this at the top level in ES6 Modules, as opposed to CommonJS modules?