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

手写实现 apply #73

Open
lovelmh13 opened this issue Jun 12, 2021 · 0 comments
Open

手写实现 apply #73

lovelmh13 opened this issue Jun 12, 2021 · 0 comments

Comments

@lovelmh13
Copy link
Owner

手写实现 apply

并不是直接用 call 实现

Function.prototype.myApply = function (that, args) {
  if (typeof that === 'undefined' || typeof that === null) {
    that = window
  }
  if (typeof args === 'undefined' || typeof args === null) {
    args = []
  }
  
  that = new Object(that) // 看不懂,感觉没有也无所谓

  const thatKey = 'thatKey'
  that[thatKey] = this
  const res = that[thatKey](...args)
  delete that[thatKey]
  
  return res
}
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