1.this 被绑定为函数定义时的 this 且无法改变
2.箭头函数内部没有 constructor 方法,也没有 prototype,所以不支持 new 操作
3.应用场景
-
如果只有一条声明语句时,隐式
return
。会简洁很多 -
使用到父作用域中的
this
。(不在 hack 的使用var _that=this)
1.this 被绑定为函数定义时的 this 且无法改变
2.箭头函数内部没有 constructor 方法,也没有 prototype,所以不支持 new 操作
3.应用场景
如果只有一条声明语句时,隐式return
。会简洁很多
使用到父作用域中的this
。(不在 hack 的使用var _that=this)