weakMap.has
weakMap.has
has()
方法根据WeakMap对象的元素中是否存在key键返回一个boolean值。
语法
wm.has(key
参数
key必须的。用来检测WeakMap对象中是否存在元素的键为key。
返回值
Boolean如果指定的key存在于某个元素中则返回true,否则返回flase。
示例
使用 has方法
var wm = new WeakMap(
wm.set(window, 'foo'
wm.has(window // returns true
wm.has('baz' // returns false
规范
Specification | Status | Comment |
---|---|---|
ECMAScript 2015 (6th Edition, ECMA-262)The definition of 'WeakMap.prototype.has' in that specification. | Standard | Initial definition. |
ECMAScript Latest Draft (ECMA-262)The definition of 'WeakMap.prototype.has' in that specification. | Draft | |
浏览器兼容性
Feature | Chrome | Edge | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|---|
Basic support | 36 | (Yes) | 6.0 (6.0) | 11 | 23 | 7.1 |
Feature | Android | Edge | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Basic support | No support | (Yes) | 6.0 (6.0) | No support | No support | 8 |