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

箭头函数使用

时间:2019-03-17 10:33:45      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:方式   let   log   his   UNC   fun   counter   on()   show   

一:定义方式

let add=(a,b)=>{

return a+b;
}
console.log(add(3,4));
如果参数只有一个函数()可以省略:
 
let show=a=>{return a};
console.log(show(1));
箭头函数this不会绑定全局 代码如下:
console.log(show(1));
function counter(){
this.num=0;
this.timer=setInterval(function(){this.num++;console.log(this.num)})
}
let b=new counter();//underfined ...
/* 箭头函数使用*/
console.log(show(1));
function counter(){
this.num=0;
this.timer=setInterval(()=>{this.num++;console.log(this.num)})
}
let b=new counter();//1,2,3,4....
 

箭头函数使用

标签:方式   let   log   his   UNC   fun   counter   on()   show   

原文地址:https://www.cnblogs.com/xys-/p/10545683.html

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