How does the behavior of 'this' in arrow functions affect their usage as methods in an object?
- It does not affect 'this' binding
- It binds 'this' to the object instance
- It binds 'this' to the global object
- It depends on the calling context
Arrow functions do not bind their own 'this' and instead inherit it from the surrounding scope. When used as methods in an object, this can lead to unintended behavior as 'this' will not refer to the object itself, potentially causing bugs.
Loading...
Related Quiz
- Consider a scenario where you have a base class for a UI component and multiple derived classes for specific components. How would the constructors and super keyword play a role in initializing state and props?
- A pure function always returns the same output given the same _________.
- How does the reduce method's accumulator work in each iteration of the array?
- In a WeakSet, the existence of an object in the set does not prevent it from being ________ by the garbage collector.
- In ES6, how does the shorthand for method properties affect the 'function' keyword in object literals?