模拟apply

9 天前(已编辑)

模拟apply

2.模拟apply

Function.prototype.myapply = function(context = window, args){
    if(this == Function.prototype){
        return undefined;
    }
    context = context || window;
    const fn = Symbol();
    context[fn] = this;
    if (Array.isArray(args)) {
        result = context[fn](...args);
    }else {
        result = context[fn]();
    }
    delete context[fn]
    return result
}

使用社交账号登录

  • Loading...
  • Loading...
  • Loading...
  • Loading...
  • Loading...