这篇翻译不完整。请帮忙从英语翻译这篇文章。
该特性处于 ECMAScript 6 规范草案中,目前的实现在未来可能会发生微调,请谨慎使用。
概述
has() 方法返回一个布尔值来指示对应的值value是否存在Set对象中
语法
mySet.has(value);
参数
- value
- 需要. 需要是否存在于Set的值.
返回值
- Boolean
- 如果指定的值(value)存在于Set对象当中,返回
true
; 否则返回false
.
示例
Example: Using the has
method
var mySet = new Set(); mySet.add("foo"); mySet.has("foo"); // returns true mySet.has("bar"); // returns false
规范
Specification | Status | Comment |
---|---|---|
ECMAScript 6 (ECMA-262) Set.prototype.has |
Release Candidate | Initial definition. |
浏览器兼容性
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | 38 | 13.0 (13.0) | 11 | 25 | 7.1 |
Feature | Android | Chrome for Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Basic support | 未实现 | 38 | 13.0 (13.0) | 未实现 | 未实现 | iOS 8 |