We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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函数的返回值里可以传递参数。
我的实现是:
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");
The text was updated successfully, but these errors were encountered:
感谢提供的实例,已修改~
Sorry, something went wrong.
No branches or pull requests
bind函数的返回值里可以传递参数。
我的实现是:
The text was updated successfully, but these errors were encountered: