ES6 —— 数组
Posted xulinjun
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ES6 —— 数组相关的知识,希望对你有一定的参考价值。
一、扩展运算符
扩展运算符(spread)是三个点(...
)。它好比 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]
以上是关于ES6 —— 数组的主要内容,如果未能解决你的问题,请参考以下文章