Skip to content

Instantly share code, notes, and snippets.

@branneman
Last active February 22, 2024 21:06
Show Gist options
  • Star 56 You must be signed in to star a gist
  • Fork 12 You must be signed in to fork a gist
  • Save branneman/5814160 to your computer and use it in GitHub Desktop.
Save branneman/5814160 to your computer and use it in GitHub Desktop.
JavaScript call() vs apply() vs bind() vs $.proxy()
var fn = function(arg1, arg2) {
var str = '<p>aap ' + this.noot + ' ' + arg1 + ' ' + arg2 + '</p>';
document.body.innerHTML += str;
};
var context = {
'noot': 'noot'
};
var args = ['mies', 'wim'];
// Calls a function with a given 'this' value and arguments provided individually.
// Support: everywhere
fn.call(context, args[0], args[1]);
// Calls a function with a given 'this' value and arguments provided as an array
// (or an array like object).
// Support: everywhere
fn.apply(context, args);
// 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 was called.
// Support: ECMAScript >= 5 (thus >= IE9)
var boundFn1 = fn.bind(context, args[0], args[1]);
boundFn1();
// Same as bind()
// Support: same as your jQuery version, available since 1.4
var boundFn2 = $.proxy(fn, context, args[0], args[1]);
boundFn2();
@VenkataRaju
Copy link

Easy to understand. Thank you.
Probably this is worth mentioning: some arguments can be provided during the actual function call

var boundFn1 = fn.bind(context, args[0]); // Binding only first argument
console.log(boundFn1(args[1]));

@amitkumar94
Copy link

Nice Explanataion . Thanks @branneman

@plrthink
Copy link

Really easy to understand. Thank you.

@branneman
Copy link
Author

@VenkataRaju: Correct, but that would be currying & partial application, and I think .bind() is not the right tool for the job when you're currying.

@night-fury-rider
Copy link

Very Nice Example.
Thanks for sharing.
Keep it up

@Ankit-Kandoliya
Copy link

Nice example, easy to understand and implement.

@lekkas
Copy link

lekkas commented Sep 2, 2015

👍

@Shashank085236
Copy link

Great example

@neo
Copy link

neo commented Jan 29, 2016

Thank you so much! It really helped!

@povtasci
Copy link

Thanks for an helpful post

@saxxi
Copy link

saxxi commented Apr 14, 2016

Finally I got it, thanks! XD

@yckart
Copy link

yckart commented May 10, 2016

Merely a note (for me), to map an array of values as arguments:

fn.bind.apply(fn, [context].concat(args))()
fn.bind.apply(fn, Array.prototype.concat.call(context, args))()
fn.bind.apply(fn, args.slice(0).reverse().concat(context).reverse())()

...any other solutions?

@omer257
Copy link

omer257 commented Jun 4, 2017

Awesome :)

@Vitaliy-Lazarev
Copy link

Thx a lot 👍

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment