--- title: Set.prototype.has() slug: Web/JavaScript/Reference/Global_Objects/Set/has tags: - ECMAScript 2015 - JavaScript - set translation_of: Web/JavaScript/Reference/Global_Objects/Set/has ---
has() 方法返回一个布尔值来指示对应的值value是否存在Set对象中。
mySet.has(value);
true
;否则返回 false
。has
方法var mySet = new Set(); mySet.add('foo'); mySet.has('foo'); // 返回 true mySet.has('bar'); // 返回 false var set1 = new Set(); var obj1 = {'key1': 1}; set1.add(obj1); set1.has(obj1); // 返回 true set1.has({'key1': 1}); // 会返回 false,因为其是另一个对象的引用 set1.add({'key1': 1}); // 现在 set1 中有2条(不同引用的)对象了
Specification | Status | Comment |
---|---|---|
{{SpecName('ES6', '#sec-set.prototype.has', 'Set.prototype.has')}} | {{Spec2('ES6')}} | Initial definition. |
{{ CompatibilityTable() }}
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | 38 | {{CompatGeckoDesktop("13.0")}} | 11 | 25 | 7.1 |
Feature | Android | Chrome for Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Basic support | {{ CompatNo() }} | 38 | {{CompatGeckoMobile("13.0")}} | {{ CompatNo() }} | {{ CompatNo() }} | iOS 8 |