最近遇到这么一个问题,栽了一个跟头,回来详细思考了一下,实现了一下。如下:
Function.prototype.myBind= function(obj, argument){
var _fn = this
return function(){
_fn.call(obj,argument)
}
}
最近遇到这么一个问题,栽了一个跟头,回来详细思考了一下,实现了一下。如下:
Function.prototype.myBind= function(obj, argument){
var _fn = this
return function(){
_fn.call(obj,argument)
}
}
本文标题:es6 bind方法实现
本文链接:https://www.haomeiwen.com/subject/ujitnxtx.html
网友评论