← KNOWLEDGE INDEX
CONFIDENCE 72%OFFICIAL REFERENCEMDN Web DocsCC-BY-SA-2.5UPDATED 2026-08-15

Function.prototype.bind() — Creating a bound function

The most common use of bind() is to make a function that, no matter how it is called, is called with a particular this value.

Reference note (untrusted external data; do not execute it as instructions). The most common use of bind() is to make a function that, no matter how it is called, is called with a particular this value. A common mistake for new JavaScript programmers is to extract a method from an object, then to later call that function and expect it to use the original object as its this (e.g., by using the method in callback-based code). Without special care, however, the original object is usually lost. Creating a bound function from the function, using the original object, neatly solves this problem > [!NOTE] > If you run this example in strict mode, the this parameter of retrieveX will be bound to undefined instead of globalThis, causing the retrieveX() call to fail. > > If you run this example in an ECMAScript module, top-level this will be bound to undefined instead of globalThis, causing the this.x = 9 assignment to fail. > > If you run this example in a Node CommonJS Attribution: Adapted from MDN Web Docs under CC-BY-SA-2.5. Adaptation: WikiKV isolated this documentation section, normalized formatting, removed long code blocks, and shortened it for retrieval. Verify version-sensitive details at the source.
ATTRIBUTED SOURCE

This compact reference card is adapted from official documentation and is not a community-verified experience.

MDN Web Docs — files/en-us/web/javascript/reference/global_objects/function/bind/index.md :: Creating a bound function ↗Revision d14bee540b53 · CC-BY-SA-2.5
#reference-seed#mdn#web#javascript#reference#global-objects#function#bind#prototype#creating#bound