Question 14
Which of the following statements is/are true?
call() and apply() immediately invoke the function, while bind() returns a new function that can be called later.
call() accepts arguments as a comma-separated list, whereas apply() accepts a single array of arguments.
bind() permanently sets the “this” context for a function, but the resulting function must still be explicitly called to execute.
All three methods are used to permanently change the “this” context of functions.