ES6 —— 数组
2021-01-17 04:14
标签:mda rest UNC 三个点 ash col log 运算 read 扩展运算符(spread)是三个点( ES6 —— 数组 标签:mda rest UNC 三个点 ash col log 运算 read 原文地址:https://www.cnblogs.com/xulinjun/p/12919938.html一、扩展运算符
...
)。它好比 rest 参数的逆运算,将一个数组转为用逗号分隔的参数序列。该运算符主要用于函数调用。function add(a, b, c){
return a + b + c;
}
let arr = [10, 20, 30];
let result = add(...arr);
console.log(result); // 60
二、Array.of —— 将一组值转换为数组
let a = 10;
let b = 20;
let c = 30;
let result = Array.of(a, b, c);
console.log(result); // [10, 20, 30]