1.生成数组:
1.1 通过Set中转,生成新的数组
// 将数据添加到Set const s = new Set(); [2, 3, 5, 4, 5, 2, 2].forEach(x => s.add(x)); // 将Set转换成数组 const array = Array.from(s);
Posted 清狐
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JavaScript数组操作相关的知识,希望对你有一定的参考价值。
1.生成数组:
1.1 通过Set中转,生成新的数组
// 将数据添加到Set const s = new Set(); [2, 3, 5, 4, 5, 2, 2].forEach(x => s.add(x)); // 将Set转换成数组 const array = Array.from(s);
以上是关于JavaScript数组操作的主要内容,如果未能解决你的问题,请参考以下文章