Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

第 56 期(W3C 标准-ECMAScript-上下文环境):模拟apply方法 #59

Open
wingmeng opened this issue Jul 10, 2019 · 0 comments
Open

Comments

@wingmeng
Copy link
Collaborator

ECMAScript 中的 apply() 方法使用一个指定的 this 值和单独给出的一个或多个参数来调用一个函数。
下面我们编写一个函数 myapply 来模拟 apply 方法,以此加深对 apply 的理解。

相关:第 52 期(W3C 标准-ECMAScript-上下文环境):模拟call方法

Function.prototype.myApply = function(context, arr) {
  context = context || window;
  context.fn = this;

  var result;

  if (!arr) {
    result = context.fn();
  } else {
    var args = [];

    for (var i = 0; i < arr.length; i++) {
      args.push('arr[' + i + ']');
    }

    result = eval('context.fn(' + args + ')');
  }

  delete context.fn;
  return result;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant