has()
method returns a boolean indicating whether an element with the specified value exists in a
Set
object or not.
The source for this interactive example is stored in a GitHub repository. If you'd like to contribute to the interactive examples project, please clone https://github.com/mdn/interactive-examples and send us a pull request.
mySet.has(value);
value
Set
对象。
返回
true
if an element with the specified value exists in the
Set
object; otherwise
false
.
注意:
Technically speaking,
has()
使用
sameValueZero
algorithm to determine whether the given element is found.
has
方法
var mySet = new Set();
mySet.add('foo');
mySet.has('foo'); // returns true
mySet.has('bar'); // returns false
var set1 = new Set();
var obj1 = {'key1': 1};
set1.add(obj1);
set1.has(obj1); // returns true
set1.has({'key1': 1}); // returns false because they are different object references
set1.add({'key1': 1}); // now set1 contains 2 entries
| 规范 |
|---|
|
ECMAScript (ECMA-262)
The definition of 'Set.prototype.has' in that specification. |
| Desktop | Mobile | Server | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
has
|
Chrome 38 | Edge 12 | Firefox 13 | IE 11 | Opera 25 | Safari 8 | WebView Android 38 | Chrome Android 38 | Firefox Android 14 | Opera Android 25 | Safari iOS 8 | Samsung Internet Android 3.0 |
nodejs
0.12
|
完整支持
用户必须明确启用此特征。
Set
Function
Object
Object.prototype.__defineGetter__()
Object.prototype.__defineSetter__()
Object.prototype.__lookupGetter__()
Object.prototype.__lookupSetter__()
Object.prototype.hasOwnProperty()
Object.prototype.isPrototypeOf()
Object.prototype.propertyIsEnumerable()
Object.prototype.toLocaleString()
Object.prototype.toSource()
Object.prototype.toString()
Object.prototype.valueOf()
Object.setPrototypeOf()