var obj = {
id: "awesome",
cool: () => { // 向上寻找this,js会自动为function的作用域创建this指向function本身,箭头函数除外
console.log(this.id);
}
};
var id = "not awesome";
obj.cool(); // not awesome
setTimeout(obj.cool, 1000); // not awesome