Skip to content

Instantly share code, notes, and snippets.

@ismasan
Created November 24, 2009 19:36
Show Gist options
  • Save ismasan/242130 to your computer and use it in GitHub Desktop.
Save ismasan/242130 to your computer and use it in GitHub Desktop.
/*
var getName = function(){return 'My name is '+this.name};
var Person = function(name){
this.name = name;
};
var Joe = new Person('Joe');
var joeName = getName.bind(Joe);
joeName() // => 'My name is Joe'
*/
if(typeof Function.prototype.bind == 'undefined'){
Function.prototype.bind = function(context, args){
var f = this;
return function(){
return f.apply(context, Array.prototype.slice.call(args || [])
.concat(Array.prototype.slice.call(arguments)));
};
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment