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

bind的实现不完整 #1

Closed
fkworld opened this issue Oct 22, 2020 · 1 comment
Closed

bind的实现不完整 #1

fkworld opened this issue Oct 22, 2020 · 1 comment

Comments

@fkworld
Copy link

fkworld commented Oct 22, 2020

bind函数的返回值里可以传递参数。

我的实现是:

Function.prototype.bindNew = function (context, ...args) {
  return (...newArgs) => this.apply(context, [...args, ...newArgs]);
};

// test
const test = {
  name: "fy",
  showName: function (last: string) {
    console.log(this.name + " is " + last);
  },
};
test.showName("handsome"); // fy is handsome
test.showName.bind({ name: "Mr.fy" })("handsome");
test.showName.bindNew({ name: "Mr.fy" })("handsome");
@Mayandev
Copy link
Owner

感谢提供的实例,已修改~

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

2 participants