bind 函数 重点是参数的处理
Function.prototype.bindcopy = function(){
const args = Array.prototype.slice.call(arguments)
const t = args.shift()
const self = this
return function(){
return self.apply(t,args)
}
}
bind 函数 重点是参数的处理
Function.prototype.bindcopy = function(){
const args = Array.prototype.slice.call(arguments)
const t = args.shift()
const self = this
return function(){
return self.apply(t,args)
}
}