當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。