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


JavaScript Set has()用法及代碼示例


設置.has()方法JavaScript 中用於檢查 Set 中是否存在具有指定值的元素。它返回一個布爾值,指示 Set 中是否存在具有指定值的元素。

用法:

mySet.has(value);

參數:

  • value:必須檢查該元素的值是否存在於 Set 中。

示例 1:在這個例子中,我們使用了sethas()方法。

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);
// As 23 exists 23, it will return true
console.log(myset.has(23));
輸出
true

示例 2:在這個例子中,我們使用了sethas()方法。

Javascript


// Create a new set using Set() constructor
let myset = new Set();
// Append new elements to the
// set using add() method
myset.add("Chicago");
myset.add("California");
myset.add("London");
// As London exists in the set,  
// it will return true
console.log(myset.has("London"));
// As Manchester does not exist in the 
// set, it will return false
console.log(myset.has("Manchester"));
輸出
true
false

我們有 Javascript Set 方法的完整列表,要檢查這些方法,請瀏覽此JavaScript 中的集合文章。

我們有一份關於 Javascript 的備忘單,其中涵蓋了 Javascript 的所有重要主題,請查看這些主題Javascript Cheat Sheet-A JavaScript 基本指南.


相關用法


注:本文由純淨天空篩選整理自shinjanpatra大神的英文原創作品 JavaScript Set has() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。