美文网首页
拓展原有函数的功能

拓展原有函数的功能

作者: 踏雪_739a | 来源:发表于2020-05-26 18:40 被阅读0次
    function say(){
        console.log("say",arguments)
    }
    
    Function.prototype.beforeSay = function(callback){
        return (...args)=>{
            callback()
            // 调用原函数
            this(...args)
        }
    }
    
    say.beforeSay(function(){
        console.log("beforeSay")
    })("hello", "world")
    

    相关文章

      网友评论

          本文标题:拓展原有函数的功能

          本文链接:https://www.haomeiwen.com/subject/zvwvahtx.html