源码Function.prototype.bind = Function.prototype.bind || function(context) { var that = this; return function() { return that.apply(context, arguments); // 这里为什么要用 that.apply, 作用是什么? }} 很疑惑,为什么要用that.apply, 仅仅是为了让bind返回一个func而不是一个结果?
添加回答
举报
0/150
提交
取消