迹忆客 专注技术分享

当前位置:主页 > 学无止境 > WEB前端 > JavaScript >

JavaScript 中将数组的值添加到现有集合

作者:迹忆客 最近更新:2022/12/19 浏览次数:

JavaScript 中要将数组的值添加到现有集合:

  1. 使用 forEach() 方法迭代数组。
  2. 在每次迭代中使用 add() 方法将数组元素添加到 Set
  3. 在最后一次迭代之后,数组中的所有值都将添加到 Set 中。
const set1 = new Set();
const arr = ['one', 'two', 'three'];

arr.forEach(element => {
  set1.add(element);
});

console.log(set1); // 👉️ {'one', 'two', 'three'}

JavaScript 中将数组的值添加到现有集合

我们传递给 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 对象中。

另一种方法是使用扩展语法 ...

要将值数组添加到现有集合:

  1. 使用 Set() 构造函数创建一个新的 Set。
  2. 使用扩展运算符将 Set 和数组的值解包到新的 Set 中,例如 new Set([...set, ...arr])
  3. 新 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 方法。

转载请发邮件至 1244347461@qq.com 进行申请,经作者同意之后,转载请以链接形式注明出处

本文地址:

相关文章

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 POST

发布时间:2024/03/23 浏览次数:96 分类:JavaScript

本教程讲解如何在不使用 JavaScript 表单的情况下发送 POST 数据。

扫一扫阅读全部技术教程

社交账号
  • https://www.github.com/onmpw
  • qq:1244347461

最新推荐

教程更新

热门标签

扫码一下
查看教程更方便