当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JavaScript Set add()用法及代码示例


设置.add()JavaScript 中的方法用于在集合中追加具有指定值的元素。它通过附加新元素来修改现有集合,但不返回新集合。

The Set.add() method does not modify the set if the element with a specified value already exists in the set.

用法:

mySet.add(value);

参数:

  • value: 这是即将添加到我们的集合中的新元素的值。

返回值:

它返回带有附加值的集合对象

示例 1:在此示例中,我们将两个数字 23 和 12 添加到集合中。

Javascript


// Create a new set using Set() constructor
let myset = new Set();
// Append new elements to the 
// set using add() method
myset.add(23);
myset.add(12);
// Print the modified set
console.log(myset);
输出
Set(2) { 23, 12 }

示例 2:使用 add() 添加元素并进行链接并检查是否存在重复值。

Javascript


// Create a new set using Set() constructor
let myset = new Set();
// Append new elements to the set 
// using add() method with chaining
myset.add(23).add(12);
// Appending an already existing 
// element to the set this
// element will not be added to the set 
// as it contains only distinct elements
myset.add(23);
// Print the modified set
console.log(myset);
输出
Set(2) { 23, 12 }

支持的浏览器:

  • Chrome 38 及以上版本
  • 边 12 及以上
  • 火狐浏览器 24 及以上版本
  • Opera 25 及以上
  • Safari 8 及以上版本

我们有 Javascript Set 方法的完整列表,要检查这些方法,请浏览此JavaScript 中的集合文章。

我们有一份关于 Javascript 的备忘单,其中涵盖了 Javascript 的所有重要主题,请查看这些主题Javascript Cheat Sheet-A JavaScript 基本指南.



相关用法


注:本文由纯净天空筛选整理自shinjanpatra大神的英文原创作品 JavaScript Set add() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。