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.
Loading...
Related Quiz
- How does error propagation work in a Promise chain?
- What potential issues might arise from using mixins in ES6, and how can they be mitigated?
- To export multiple features from a single module, use export { feature1, feature2 as _______ };.
- Using __________ at the beginning of an async function can help catch synchronous errors.
- In ES6, what happens when two different modules import the same dependency?