📜  为什么不能在 javascript 中使用箭头函数和 this 来声明方法 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:02:37.381000             🧑  作者: Mango

代码示例2
'use strict';

var obj = { // does not create a new scope
  i: 10,
  b: () => console.log(this.i, this),
  c: function() {
    console.log(this.i, this);
  }
}

obj.b(); // prints undefined, Window {...} (or the global object)
obj.c()