WeakMap.prototype
WeakMap.prototype
WeakMap.prototype
属性表现为WeakMap
的构造器。
| WeakMap.prototype
属性的属性特性 |
|:----|
| Writable | no |
| Enumerable | no |
| Configurable | no |
描述
WeakMap
实例从WeakMap.prototype
继承了所有属性。你可以在WeakMap构造器中添加属性和方法,从而使得所有
实例中都有效。
WeakMap.prototype
本身只是一个普通的对象:
Object.prototype.toString.call(WeakMap.prototype // "[object Object]"
属性
WeakMap.prototype.constructor
返回创建WeakMap
实例的原型函数。WeakMap
函数是默认的。
方法
WeakMap.prototype.delete(key)
移除key的关联对象。执行后WeakMap.prototype.has(key)返回false。WeakMap.prototype.get(key)
返回key关联对象
, 或者undefined
(没有key关联对象
时)。WeakMap.prototype.has(key)
根据是否有key关联对象
返回一个Boolean值。
规范
Specification | Status | Comment |
---|---|---|
ECMAScript 2015 (6th Edition, ECMA-262)The definition of 'WeakMap.prototype' in that specification. | Standard | Initial definition. |
ECMAScript Latest Draft (ECMA-262)The definition of 'WeakMap.prototype' in that specification. | Living Standard | |
浏览器兼容性
Feature | Chrome | Edge | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|---|
Basic support | 36 | (Yes) | 6.0 (6.0) | 11 | 23 | 7.1 |
Feature | Android | Chrome for Android | Edge | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|---|
Basic support | No support | No support | (Yes) | 6.0 (6.0) | No support | No support | 8 |