码迷,mamicode.com
首页 > 其他好文 > 详细

【ES6】箭头函数

时间:2016-09-08 14:33:13      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:

let getPrices = () => 4.55
console.log(getPrices())

let arr = [‘apple‘, ‘banana‘, ‘orange‘]
arr.forEach(value => {
    console.log(value)
})
arr.forEach((value, index) => {
    console.log(value, index)
})

function Person() {
  var self = this;
  self.age = 0;

  setInterval(function growUp() {
    self.age++;
  }, 1000);
}

function Person(){
  this.age = 0;

  setInterval(() => {
    // this 指向 person 对象
    this.age++;
  }, 1000);
}

var person = new Person();

 

【ES6】箭头函数

标签:

原文地址:http://www.cnblogs.com/jzm17173/p/5852768.html

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