扩展操作符 … 是ES6中引入的,将可迭代对象展开到其单独的元素中,所谓的可迭代对象就是任何能用for of循环进行遍历的对象。

一、拷贝操作

  1. 拷贝数组对象 ```c const years = [2018, 2019, 2020, 2021]; const copyYears = […years];

console.log(copyYears); // [ 2018, 2019, 2020, 2021 ]

  1. 扩展运算符拷贝数组,只有第一层是深拷贝,即对一维数组使用扩展运算符拷贝就属于深拷贝。
  2. ```javascript
  3. copyArray [ 2021, [ 1, 2, 3, 4, 5, 6, 7 ], 1 ]
  4. //复制数组 miniCalenda
  5. copyArray [ 2021, [ 0, 2, 3, 4, 5, 6, 7, 8 ], 2 ]
  6. /**
  7. *1. 将数组第二个元素的第一个元素重新赋值为0;
  8. *2. 往数组的第二个元素增加一个元素8;
  9. *3. 将数组第三个元素重新赋值为2
  10. */
  11. miniCalendar [ 2021, [ 0, 2, 3, 4, 5, 6, 7, 8 ], 1 ]
  12. //从结果来看,数组的第二个元素为数组,大于1维了,里面的元素的变更将导致原变量的值随之改变
  1. 拷贝对象 ```javascript const time = { year: 2021, month: 7, day: {
    1. value: 1,
    }, }; const copyTime = { …time }; console.log(copyTime); // { year: 2021, month: 7, day: { value: 1 } }

//扩展运算符拷贝对象只会在一层进行深拷贝 copyTime.day.value = 2; copyTime.month = 6; console.log(copyTime); // { year: 2021, month: 6, day: { value: 2 } } console.log(time); // { year: 2021, month: 7, day: { value: 2 } } //从打印的结果看,扩展运算符只对对象第一层进行了深拷贝。 //严格来讲,扩展运算符不执行深拷贝合并操作

  1. <a name="PpQii"></a>
  2. #### 二、合并操作
  3. 1. 合并数组
  4. ```javascript
  5. const halfMonths1 = [1, 2, 3, 4, 5, 6];
  6. const halfMonths2 = [7, 8, 9, 10, 11, 12];
  7. const allMonths = [...halfMonths1, ...halfMonths2];
  8. console.log(allMonths); // [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12 ]
  1. 合并对象。在合并对象时,如果一个键已经存在,它会被具有相同键的最后一个对象给替换。
    1. const time1 = {
    2. month: 7,
    3. day: {
    4. value: 1,
    5. },
    6. };
    7. const time2 = {
    8. year: 2021,
    9. month: 8,
    10. day: {
    11. value: 10,
    12. },
    13. };
    14. const time = { ...time1, ...time2 };
    15. console.log(time); // { month: 8, day: { value: 10 }, year: 2021 }

    三、参数传递

    ```c const sum = (num1, num2) => num1 + num2;

console.log(sum(…[6, 7])); // 13 console.log(sum(…[6, 7, 8])); // 13 //函数定义了多少个参数,扩展运算符传入的值就是多少个

  1. math 函数一起使用
  2. ```c
  3. const arrayNumbers = [1, 5, 9, 3, 5, 7, 10];
  4. const min = Math.min(...arrayNumbers);
  5. const max = Math.max(...arrayNumbers);
  6. console.log(min); // 1
  7. console.log(max); // 10

四、数组去重

  1. //与 Set 一起使用消除数组的重复项
  2. const arrayNumbers = [1, 5, 9, 3, 5, 7, 10, 4, 5, 2, 5];
  3. const newNumbers = [...new Set(arrayNumbers)];
  4. console.log(newNumbers); // [ 1, 5, 9, 3, 7, 10, 4, 2 ]

五、字符串转字符数组

  1. //String 也是一个可迭代对象,所以也可以使用扩展运算符 ... 将其转为字符数组
  2. const title = "china";
  3. const charts = [...title];
  4. console.log(charts); // [ 'c', 'h', 'i', 'n', 'a' ]
  5. //进而可以简单进行字符串截取,如下:
  6. const title = "china";
  7. const short = [...title];
  8. short.length = 2;
  9. console.log(short.join("")); // ch

六、NodeList 转数组

NodeList 对象是节点的集合,通常是由属性,如 Node.childNodes 和方法,如 document.querySelectorAll 返回的。
NodeList 类似于数组,但不是数组,没有 Array 的所有方法,例如find、map、filter 等,但是可以使用 forEach() 来迭代。
可以通过扩展运算符将其转为数组

  1. //NodeList 转数组
  2. const nodeList = document.querySelectorAll(".row");
  3. const nodeArray = [...nodeList];
  4. console.log(nodeList);
  5. console.log(nodeArray);

七、解构变量

  1. 解构数组

    1. const [currentMonth, ...others] = [7, 8, 9, 10, 11, 12];
    2. console.log(currentMonth); // 7
    3. console.log(others); // [ 8, 9, 10, 11, 12 ]
  2. 解构对象

    1. const userInfo = { name: "Crayon", province: "Guangdong", city: "Shenzhen" };
    2. const { name, ...location } = userInfo;
    3. console.log(name); // Crayon
    4. console.log(location); // { province: 'Guangdong', city: 'Shenzhen' }

    八、打印日志

    1. //在打印可迭代对象的时候,需要打印每一项可以使用扩展符
    2. const years = [2018, 2019, 2020, 2021];
    3. console.log(...years); // 2018 2019 2020 2021