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);
标签:span post log 添加 body color rip set div
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);
标签:span post log 添加 body color rip set div
原文地址:https://www.cnblogs.com/hwubin5/p/8413904.html