ES6-11学习笔记--扩展运算符与rest参数

Posted 火星程序随记

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ES6-11学习笔记--扩展运算符与rest参数相关的知识,希望对你有一定的参考价值。

1、符号都是使用:...
2、扩展运算符:把数组或者类数组展开成用逗号隔开的值
3、rest参数:把逗号隔开的值组合成一个数组
 
扩展运算符:
function foo(a, b, c) {
    console.log(a, b, c);
}
let arr = [1, 2, 3]
foo(...arr)

如果用解构赋值,那么foo的参数也要是数组,使用扩展运算符就不需要。

 

将两个数组合并成一个数组:
let arr1 = [1, 2, 3]
let arr2 = [4, 5, 6]
// ES5合并
Array.prototype.push.apply(arr1, arr2)
console.log(arr1);
// ES6合并 arr1.push(...arr2) console.log(arr1);

  

将字符串打散成数组:
let str = \'abc\'
console.log([...str]);

  

rest参数:
下面实现不确定数量参数进行累加的方法
function sum(...args) {
    console.log(args);
    let num = 0;
    args.forEach((item) => {
        num += item
    })
    return num;
}
console.log(sum(1, 2));
console.log(sum(1, 2, 3));

  

 

以上是关于ES6-11学习笔记--扩展运算符与rest参数的主要内容,如果未能解决你的问题,请参考以下文章

rest 参数与扩展运算符

扩展运算符与rest参数

扩展运算符与rest参数

☀️Rest参数和扩展运算符

☀️Rest参数和扩展运算符

☀️Rest参数和扩展运算符