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

Arraw Function

时间:2018-12-30 18:53:56      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:params   没有   param   ...   single   https   rest   ams   html   

基本语法

(param1, param2, …, paramN) => { statements }

(param1, param2, …, paramN) => expression

如果函数体没有用{}括起来,就等于{ return express}

只有一个参数时,括号才能不加

(singleParam) => { statements }

singleParam => { statements }

如果没有参数,就一定要加括号

() => { statements }

进阶语法

如果返回是一个对象,需要将对象用()括起来:

params => ({foo: bar})

 

多参数和参数默认值

(param1, param2, ...rest) => { statements }

(param1 = defaultValue1, param2, …, paramN = defaultValueN) => { statements }

 

也支援 parameter list 的解構

var f = ([a, b] = [1, 2], {x: c} = {x: a + b}) => a + b + c; f(); // 6

摘自https://www.cnblogs.com/NerverLate/p/8968648.html

Arraw Function

标签:params   没有   param   ...   single   https   rest   ams   html   

原文地址:https://www.cnblogs.com/eunji/p/10199925.html

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