用js 两个集合 去重
时间: 2024-05-02 13:22:08 浏览: 53
js中数组对象去重的两种方法
5星 · 资源好评率100%
可以使用Set数据结构实现两个集合的去重。
例如,假设有两个数组arr1和arr2,可以使用以下代码进行去重:
```
// 创建两个Set对象
const set1 = new Set(arr1);
const set2 = new Set(arr2);
// 将set2中的元素添加到set1中
set2.forEach((item) => {
set1.add(item);
});
// 将set1转换为数组
const result = Array.from(set1);
```
这样,result数组就是两个集合去重后的结果。
阅读全文