美文网首页
JavaScript call apply bind

JavaScript call apply bind

作者: 尘封丿History | 来源:发表于2019-02-24 19:05 被阅读0次

    Function.prototype.myCall=function(context){

    if(typeof this !=='function'){

    throw new TypeError('error');

    }

    context = context||window;

    context.fn=this;

    let args = [...arguments].slice(1);

    let ruselt=context.fn(args);

    delete context.fn

    return result;

    }

    相关文章

      网友评论

          本文标题:JavaScript call apply bind

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