Skip to content

Instantly share code, notes, and snippets.

@deflexor
Created February 12, 2017 22:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save deflexor/706b00802519252beb1c64b16c7b6e47 to your computer and use it in GitHub Desktop.
Save deflexor/706b00802519252beb1c64b16c7b6e47 to your computer and use it in GitHub Desktop.
Rewrite the bind method from scratch.
function mybind(f, o) {
return function() {
return f.apply(o, arguments);
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment