WeakRef() constructor - JavaScript | MDN
Syntax
Note:
WeakRef() can only be constructed with new. Attempting to call it without new throws a TypeError.
Parameters
target-
The target value the WeakRef should refer to (also called the referent). Must be an object or a non-registered symbol.
Return value
A new WeakRef object referring to the given target value.
Exceptions
TypeError-
Thrown if
targetis not an object or a non-registered symbol.
Examples
Creating a new WeakRef object
See the main WeakRef
page for a complete example.
js
class Counter {
constructor(element) {
// Remember a weak reference to a DOM element
this.ref = new WeakRef(element);
this.start();
}
}
Specifications
| Specification |
|---|
| ECMAScript® 2027 Language Specification # sec-weak-ref-constructor |