weakSet.has
has()方法根据 WeakSet是否存在相应对象返回布尔值。
语法
ws.has(value);参数
value必须。 测试WeakSet 中是否存在该对象。
返回值
Boolean如果 WeakSet 对象中存在指定的元素,返回 true;否则返回 false。
示例
使用 has 方法
var ws = new WeakSet();
var obj = {};
ws.add(window);
mySet.has(window); // returns true
mySet.has(obj); // returns false规范
Specification | Status | Comment |
|---|---|---|
ECMAScript 2015 (6th Edition, ECMA-262)The definition of 'WeakSet.prototype.has' in that specification. | Standard | Initial definition. |
ECMAScript Latest Draft (ECMA-262)The definition of 'WeakSet.prototype.has' in that specification. | Draft | |
浏览器兼容性
Feature | Chrome | Edge | Firefox (Gecko) | Internet Explorer | Opera | Safari |
|---|---|---|---|---|---|---|
Basic support | 36 | (Yes) | 34 (34) | No support | 23 | No support |
Feature | Android | Edge | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
|---|---|---|---|---|---|---|
Basic support | No support | (Yes) | 34.0 (34) | No support | No support | No support |
本文档系腾讯云开发者社区成员共同维护,如有问题请联系 cloudcommunity@tencent.com

