三点运算符(...)的使用方法

本文详细介绍了JavaScript中的扩展运算符(...)的五个主要用途:合并参数、数组转换、字符串转换、数组合并以及在数组最大值计算中的应用。此外,还展示了如何结合Set进行数组去重的操作。通过实例展示了扩展运算符在实际编程中的灵活运用。
摘要由CSDN通过智能技术生成

作用一:

将多余的参数进行合并,转为数组

  function test(a,...b){
            console.log(a); //10
            console.log(b); // [ "hello", "world" ]
        }
        test(10,'hello','world');

作用二:

将数组转成字符串

 var a = [1, 2, 3, 4];
        function test() {
            console.log(...a);  //1 2 3 4
        }
        test();

作用三:

将字符串转成数组

var a = 'abcd';
        function test() {
            console.log([...a]);  //[ "a", "b", "c", "d" ]
        }
        test();

作用四:

合并数组

 function test() {
            let a = ['a','b','c'];
            let b = ['d','e'];
            let arr = [...a, ...b];
            console.log(arr); //[ "a", "b", "c", "d", "e" ]
        }
        test();

作用五:

数组最大时修改数组数据类型传入Math.max得到最大值

 function test() {
            let a = [2,5,10];
            console.log(Math.max(a)); //NaN
            console.log(Math.max(...a));  //10
          
        }
        test();

拓展:

结合Set来进行数组去重

 function test() {
            var a = [1,1,3,4,1,6];
            b=[...new Set(a)];
            console.log(b); //[ 1, 3, 4, 6 ]      
        }
        test();

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值