手写bind
bind的传参第一个是this的新指向,后面传的是参数列表。bind使用后会返回一个函数,并且返回后的函数的this无法再改变。
用法:方法名.bind(this的新指向,参数1,参数2,参数3…)
Function.prototype.newBind = function(){const _this = thisconst [newThis,...ags] = argumentsreturn function(){return _this.apply(newThis,ags) // 也可以使用下边手写的newApply}
}
手写apply
apply的传参第一个是this的新指向,后面传的是参数数组,apply使用后会自动执行函数
用法:方法名.apply(this的新指向,[参数数组])
Function.prototype.newApply = function(){let [context,ags] = argumentscontext.fn = thislet result = ags[0]? context.fn(...ags) : context.fn()delete context.fnreturn result
}
手写call
call的传参第一个是this的新指向,后面传的是参数列表,call使用后会自动执行函数
用法:方法名.call(this的新指向,参数1,参数2,参数3…)
Function.prototype.newCall = function(){let [context,...ags] = argumentscontext.fn = thislet result = context.fn(...ags)delete context.fnreturn result
}