diff --git a/content/roadmaps/106-javascript/content/111-javascript-this-keyword/100-function-borrowing.md b/content/roadmaps/106-javascript/content/111-javascript-this-keyword/100-function-borrowing.md index 896e56c23..d84e74173 100644 --- a/content/roadmaps/106-javascript/content/111-javascript-this-keyword/100-function-borrowing.md +++ b/content/roadmaps/106-javascript/content/111-javascript-this-keyword/100-function-borrowing.md @@ -1 +1,5 @@ -# Function borrowing \ No newline at end of file +# Function Borrowing + +Function borrowing allows us to use the methods of one object on a different object without having to make a copy of that method and maintain it in two separate places. It is accomplished through the use of `.call()`, `.apply()`, or `.bind()`, all of which exist to explicitly set this on the method we are borrowing. + +Function borrowing