Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Set.prototype.has()

这篇翻译不完整。请帮忙从英语翻译这篇文章

该特性处于 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

相关连接

文档标签和贡献者

 此页面的贡献者: Nonlone
 最后编辑者: Nonlone,