yihan12 / Frontend-interview

记录一些前端面试相关题目
2 stars 0 forks source link

说说你对this的理解 #28

Open yihan12 opened 10 months ago

yihan12 commented 10 months ago

基本上可以归为四类,

  1. 全局this 是window
  2. 函数this 是调用者
  3. 构造函数的this 是new 之后的新对象
  4. 如果函数是通过call、apply、bind进行绑定,那么this就指向被绑定的对象
yihan12 commented 10 months ago

[js] 第33天 说说你对this的理解