kolesoffac

myBind small

Mar 26th, 2018
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Function.prototype.myBind = function(context) {
  2.             return function() {
  3.                 var args = arguments;
  4.  
  5.                 return this.apply(context, args);
  6.             };
  7. }
Advertisement
Add Comment
Please, Sign In to add comment