What happens if you call bind on an arrow function?
Nothing. The arrow function's this is lexical (inherited from the enclosing scope). bind, call, and apply cannot change an arrow's this.
Verify This Answer
Cross-check this information using these trusted sources:
More FAQs in call, apply, and bind Interview Questions
No. The first bind wins. bound.bind(newObj) does not change this. The bound function keeps the original this from the first bind call.
Array.prototype.slice.call(arguments). This borrows the slice method from Array.prototype and applies it to the array-like arguments object.
15. call sets this to obj (so this.x is 10) and passes 5 as y. 10 + 5 = 15.
Still have questions?
Browse all our FAQs or reach out to our support team
