The Wayback Machine - https://web.archive.org/web/20250225105637/https://www.geeksforgeeks.org/javascript-function-binding/
Open In App

JavaScript Function Binding

Last Updated : 17 Dec, 2024
Summarize
Comments
Improve
Suggest changes
Like Article
Like
Share
Report
News Follow

In JavaScript, function binding refers to the process of associating a function with a specific context (this value). The bind() method creates a new function that, when called, has its ‘this’ keyword set to the provided value.

  • this Binding: Functions in JavaScript are executed in a context. By default, ‘this’ refers to the global object or undefined in strict mode.
  • Permanent Binding: When a function is bound to a specific object using bind(), it will always use that object as the context when invoked, no matter how it is called.
  • Partial Application: Function binding can also allow you to pre-fill arguments, creating a partially applied function.
JavaScript
const person = {
    name: 'GFG',
    greet: function() {
        console.log('Hello, ' + this.name);
    }
};
const greet = person.greet;
greet(); 

Output
Hello, undefined

When greet is called directly (without being bound to the person object), the value of this is not person anymore. Instead, it refers to the global object (in non-strict mode) or undefined (in strict mode).

Methods of Function Binding

1. bind() Method

The bind() method is used to create a new function that, when called, has its this value set to a specified value, regardless of how the function is invoked.

JavaScript
const person = {
    name: 'GFG',
    greet: function() {
        console.log('Hello, ' + this.name);
    }
};
const greet = person.greet;
const boundGreet = greet.bind(person);
boundGreet(); 

Output
Hello, GFG

2. call() Method

The call() method immediately invokes a function, allowing you to set the value of this and pass arguments to the function.

JavaScript
const person = {
    name: 'GFG',
    greet: function(city) {
        console.log('Hello, ' + this.name + ' from ' + city);
    }
};
person.greet('Delhi');
const greet = person.greet;
greet.call(person, 'Noida'); 

Output
Hello, GFG from Delhi
Hello, GFG from Noida

Here, we use call() to bind the greet function to the person object and also pass the argument ‘Los Angeles’.

3. apply() Method

Similar to call(), the apply() method invokes a function and allows you to set the value of this, but the difference is that the arguments are passed as an array (or an array-like object).

JavaScript
const person = {
    name: 'GFG',
    greet: function(city, country) {
        console.log('Hello, ' + this.name + ' from ' + city + ', ' + country);
    }
};
person.greet('Delhi', 'India'); 
const greet = person.greet;
greet.apply(person, ['Noida', 'Delhi']); 

Output
Hello, GFG from Delhi, India
Hello, GFG from Noida, Delhi

Arrow Functions and this Binding

Arrow functions behave differently when it comes to the this keyword. They do not have their own this context. Instead, arrow functions inherit the this value from the surrounding lexical context.

Example with Arrow Function:

JavaScript
const person = {
    name: 'GFG',
    greet: function() {
        const arrowGreet = () => {
            console.log('Hello, ' + this.name); 
        };
        arrowGreet();
    }
};
person.greet();

Output
Hello, GFG

The arrow function arrowGreet doesn’t bind this to itself. Instead, it uses this from the outer function (greet), which is person.



Next Article

Similar Reads

three90RightbarBannerImg