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

JS - 箭头函数与 () {} 的作用域

时间:2017-12-01 15:14:10      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:...   san   function   函数   foo   等价   作用域   箭头   nbsp   

foo () {

  // ...

}

等价于

foo: function () {

  // ...

}

 

foo: () => {

  // ...

}

 

 

范例:

 

// 全局

 

name = ‘zhangsan‘

 

const a = {

  name: ‘lisi‘,

  sayName () {

   console.log(this.name)

  }

}

 

const b = {

  name: ‘wangwu‘,

  sayName: () => {

    console.log(this.name)

  }

}

 

a.sayName()  // lisi

 

b.sayName() // zhangsan

JS - 箭头函数与 () {} 的作用域

标签:...   san   function   函数   foo   等价   作用域   箭头   nbsp   

原文地址:http://www.cnblogs.com/jzsz/p/7942184.html

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