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

es6 箭头函数

时间:2018-03-18 17:13:26      阅读:98      评论:0      收藏:0      [点我收藏+]

标签:post   turn   UNC   body   cti   pre   else   nbsp   箭头   

1 :x=>x*x
function (x){
  return x*x
}
2: x=>{
  if(x>0){
    return 1;
  }else{
    return 0;
  }
}
function (x){
  if(x>0){
   return 1;
}else{
   return 0;  
}
}
3: (x,y)=>x+y
function (x,y){
  return x+y;
}
4: x=>({name:‘lili‘})
function (x){
  return {name:‘lili‘}
}

 

es6 箭头函数

标签:post   turn   UNC   body   cti   pre   else   nbsp   箭头   

原文地址:https://www.cnblogs.com/3wHaozi/p/8596044.html

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