码迷,mamicode.com
首页 > 其他好文 > 详细

bind

时间:2020-06-29 13:22:51      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:const   tor   class   cti   app   blog   div   lun   logs   

Function.prototype.myBind = function(obj,...rest){
    let that = this
    let bound = function(...args){
        let params = [...rest,...args]
        that.apply(this.constructor === that ? this : obj,params)
    }
    bound.prototype = that.prototype
    return bound
}

https://www.cnblogs.com/echolun/p/12178655.html

bind

标签:const   tor   class   cti   app   blog   div   lun   logs   

原文地址:https://www.cnblogs.com/zhenjianyu/p/13207315.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!