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
apply
https://febook.hzfe.org/awesome-interview/book4/coding-apply-call-bind
The text was updated successfully, but these errors were encountered:
apply 这一行实现,会使第二个参数传入 [] 或 {length: 0} 时报错
[]
{length: 0}
if (argsArray && typeof argsArray === "object" && argsArray.length) {
可以改成
if (argsArray && typeof argsArray === "object" && 'length' in argsArray) {
Sorry, something went wrong.
LLawlight
No branches or pull requests
实现 apply/call/bind | HZFE - 剑指前端 Offer
apply
https://febook.hzfe.org/awesome-interview/book4/coding-apply-call-bind
The text was updated successfully, but these errors were encountered: