<b>对象扩展运算符(...):</b>
当编写一个方法时,我们允许它传入的参数是不确定的。这时候可以使用对象扩展运算符来作参数。
function test(...arg){
console.log(arg[0]);
console.log(arg[1]);
console.log(arg[2]);
}
test('a','b'); //a,b
在对数组赋值时,使用扩展运算符,实现真正的赋值。
<b>rest运算符</b>
function arr(first,...arg){
console.log(arg.length);
}
arr(0,1,2,3,4); //4
控制台打印出4,说明arg里有4个数组元素,这是rest运算符的最简单用法。
可以用for...of循环来进行打印出arg的值。
function arr(first,...arg){
for(let val of arg)
console.log(val);
}
arr(0,1,2,3,4); //1,2,3,4
for...of的循环可以 避免我们开拓内存空间,增加代码允许效率。