Function 索引 bind bind Function.prototype.bind = function () { var fn = this, _this = arguments[0], args = Array.prototype.slice.call(arguments, 1); return function () { fn.apply(_this, args.concat(arguments)); }; };