Set.prototype.has()
**has()
** 方法是 Set
实例的方法,它返回一个布尔值,指示此集合中是否存在具有指定值的元素。
试一试
语法
js
has(value)
参数
value
-
要在
Set
对象中测试是否存在的值。
返回值
如果 Set
对象中存在具有指定值的元素,则返回 true
;否则返回 false
。
示例
使用 has() 方法
js
const mySet = new Set();
mySet.add("foo");
console.log(mySet.has("foo")); // true
console.log(mySet.has("bar")); // false
const set1 = new Set();
const obj1 = { key1: 1 };
set1.add(obj1);
console.log(set1.has(obj1)); // true
console.log(set1.has({ key1: 1 })); // false, because they are different object references
console.log(set1.add({ key1: 1 })); // now set1 contains 2 entries
规范
规范 |
---|
ECMAScript 语言规范 # sec-set.prototype.has |
浏览器兼容性
BCD 表格仅在启用 JavaScript 的浏览器中加载。