箭头函数不会修改this

function Person () {
  this.name = 'little bear',
  this.age = 18
  setTimeout(()=>{
	console.log(this
)
})
}
var a = new Person()

setTimeout里的this代表new Person出来的对象

function Person () {
  this.name = 'little bear',
  this.age = 18
  setTimeout(function(){
	console.log(this
)
})
}
var a = new Person()

setTimeout里的this代表window

由于箭头函数不改变this,所以setTimeout里面的箭头函数this,不能改变

  

  

posted on 2018-04-03 14:57  杨龙飞  阅读(509)  评论(0编辑  收藏  举报

导航

Fork me on GitHub