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

es6可变参数-扩展运算符

时间:2018-10-31 14:03:08      阅读:211      评论:0      收藏:0      [点我收藏+]

标签:item   数组   call   ...   each   for   hello   扩展   nbsp   

es5中参数不确定个数的情况下:

//求参数和
function f(){
  var a = Array.prototype.slice.call(arguments);
  var sum = 0;
  a.forEach(function(item){
     sum += item*1;          
  })     
  return sum;  
};
f(1,2,3);//6

es6中可变参数:

function f(...a){
  let sum = 0;
  a.forEach(item =>{
     sum += item*1;
  })    
  return sum;  
}
f(1,2,3);//6

...a 为扩展运算符,这个 a 表示的就是可变参数的列表,为一个数组

合并数组

//es5
var param = [‘hello‘,true,7];
var other = [1,2].concat(param);
console.log(other);//[1, 2, "hello", true, 7]
//es6
var param = [‘hello‘,true,7];
var other = [1,2,...param];
console.log(other);// [1, 2, "hello", true, 7]

 

es6可变参数-扩展运算符

标签:item   数组   call   ...   each   for   hello   扩展   nbsp   

原文地址:https://www.cnblogs.com/lingnweb/p/9882284.html

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