> Articles > Function Borrowing In JavaScript
In this article we will explain function borrowing in JavaScript. This is also called method borrowing in JavaScript.
Function can be borrowed from one object to use it for another object.
We can use call() and apply() method to borrow the function from one object and that function can be used for another object. Let's see the implementation of function borrowing in JavaScript.