标签:ret str es6 bsp span nbsp 语句 function 括号
一:箭头函数的格式
a:一种为只有一条语句,可以省略{}和return。
如:x => x * x;
相当于: function(x) {
return x * x;
}
b:一种为多条语句,不可以省略{}和return。
如:x => {
if (x > 0) {
return 1;
}
return 2;
}
相当于:function(x){
if (x > 0) {
return 1;
}
return 2;
}
注:a.当无参数时或有多个参数时,需要用括号()括起来。
如:(x, y)=> x + y;
b.当
标签:ret str es6 bsp span nbsp 语句 function 括号
原文地址:http://www.cnblogs.com/yangrenmu/p/6123663.html