Which method attaches a permanent this value to a function and returns a new function?
- A call()
- B apply()
- C bind()
- D attach()
Answer
bind()
bind returns a new function with this fixed. call and apply invoke the function immediately, differing only in how arguments are passed.





