Skip to content

Instantly share code, notes, and snippets.

@elitenomad
Created February 21, 2020 01:45
Show Gist options
  • Save elitenomad/9cdae63784271ecefc7650b46fe20c7d to your computer and use it in GitHub Desktop.
Save elitenomad/9cdae63784271ecefc7650b46fe20c7d to your computer and use it in GitHub Desktop.
implement function.prototype.bind
function.prototype.bind = function(context) {
var fn = this
return function(){
fn.call(context);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment