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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。