JavaScript 中将数组的值添加到现有集合
JavaScript 中要将数组的值添加到现有集合:
-
使用
forEach()
方法迭代数组。 -
在每次迭代中使用
add()
方法将数组元素添加到Set
。 -
在最后一次迭代之后,数组中的所有值都将添加到
Set
中。
const set1 = new Set();
const arr = ['one', 'two', 'three'];
arr.forEach(element => {
set1.add(element);
});
console.log(set1); // 👉️ {'one', 'two', 'three'}
我们传递给 Array.forEach
方法的函数会针对数组中的每个元素进行调用。
在每次迭代中,我们使用 Set.add
方法将元素添加到 Set 中。
请注意
,Set 对象仅存储唯一值。 如果我们的数组包含重复项,则不会将任何重复项添加到集合中。
const set1 = new Set();
const arr = ['one', 'one', 'one'];
arr.forEach(element => {
set1.add(element);
});
console.log(set1); // 👉️ {'one'}
我们的数组包含 3 个元素,但有 2 个重复项没有添加到 Set 对象中。
另一种方法是使用扩展语法 ...
。
要将值数组添加到现有集合:
-
使用
Set()
构造函数创建一个新的 Set。 -
使用扩展运算符将 Set 和数组的值解包到新的 Set 中,例如
new Set([...set, ...arr])
。 - 新 Set 将包含原始 Set 和数组中的值。
const set1 = new Set();
const arr = ['one', 'two', 'three'];
const newSet = new Set([...set1, ...arr]);
console.log(newSet); // 👉️ {'one', 'two', 'three'}
我们使用 Set()
构造函数创建了一个新的 Set,在其中我们解压缩了原始 Set 的值和数组的值。
Set 和数组都是可迭代对象,因此我们可以使用扩展运算符
...
将它们的值解包到一个新的 Set 中。
这种方法非常简洁紧凑,但是它不会向原始 Set 添加值,而是创建一个新 Set。
如果要将数组的值添加到原始 Set,请使用 forEach
方法。
相关文章
Do you understand JavaScript closures?
发布时间:2025/02/21 浏览次数:108 分类:JavaScript
-
The function of a closure can be inferred from its name, suggesting that it is related to the concept of scope. A closure itself is a core concept in JavaScript, and being a core concept, it is naturally also a difficult one.
Do you know about the hidden traps in variables in JavaScript?
发布时间:2025/02/21 浏览次数:178 分类:JavaScript
-
Whether you're just starting to learn JavaScript or have been using it for a long time, I believe you'll encounter some traps related to JavaScript variable scope. The goal is to identify these traps before you fall into them, in order to av
How much do you know about the Prototype Chain?
发布时间:2025/02/21 浏览次数:150 分类:JavaScript
-
The prototype chain can be considered one of the core features of JavaScript, and certainly one of its more challenging aspects. If you've learned other object-oriented programming languages, you may find it somewhat confusing when you start
如何在 JavaScript 中合并两个数组而不出现重复的情况
发布时间:2024/03/23 浏览次数:86 分类:JavaScript
-
本教程介绍了如何在 JavaScript 中合并两个数组,以及如何删除任何重复的数组。