InterviewSolution
Saved Bookmarks
| 1. |
Which method is used to add a binding?(a) binding()(b) add_bind()(c) bind()(d) addbind() |
|
Answer» Right answer is (c) bind() Best explanation: The bind() method creates a new function that, when called, has its this keyword set to the provided value, with a given sequence of arguments preceding any provided when the new function is called. |
|