普通函数
默认调用 fn this指向 window
方法 arr.fn this 当前的方法属于谁,this就是谁
事件 document.onclick this 当前的方法属于谁, this就是谁/当前发生事件元素
定时器 setTimeout this 指向 window
new this 当前的对象
{} this 里面是 当前对象
es6中的箭头函数
默认调用 fn this指向 window
方法 this指向 window
事件 this指向 window
定时器 this指向 window
{} this指向 window
没有new