Created
November 24, 2009 19:36
-
-
Save ismasan/242130 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
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