js this 工作原理
https://yehudakatz.com/2011/08/11/understanding-javascript-function-invocation-and-this/
- 1)this的值在函数被调用的时候才会指定
- 2)我们可以在函数被返回时就绑好正确的this,即箭头函数能保存函数创建时的 this值,而不是调用时的值
https://yehudakatz.com/2011/08/11/understanding-javascript-function-invocation-and-this/