码迷,mamicode.com
首页 > Web开发 > 详细

JS箭头函数的this

时间:2019-07-06 13:16:24      阅读:98      评论:0      收藏:0      [点我收藏+]

标签:undefined   his   tag   efi   rip   fun   window   define   this   

箭头函数的this看定义他的时候,他的外层有没有函数

有:外层函数的this就是箭头函数的this

无:箭头函数的this就是window

obj = {age:18, getAge: ()=>console.log(this.age)}
obj.getAge()
//undefined    定义的时候外层没有函数,指向window

obj = {age:18, getAge: function(){print = ()=>console.log(this.age); print()}}
obj.getAge()
//18    定义的时候外层函数的this就是箭头函数的this

  

JS箭头函数的this

标签:undefined   his   tag   efi   rip   fun   window   define   this   

原文地址:https://www.cnblogs.com/413xiaol/p/11142356.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!