javascript constructor
AsyncDisposableStack() constructor
The AsyncDisposableStack() constructor creates AsyncDisposableStack objects.
Syntax
new AsyncDisposableStack()
[!NOTE]
AsyncDisposableStack()can only be constructed withnew. Attempting to call it withoutnewthrows aTypeError.
Parameters
None.
Return value
A new AsyncDisposableStack object.
Examples
Creating an AsyncDisposableStack
const disposer = new AsyncDisposableStack();
disposer.defer(() => console.log("Disposed!"));
await disposer.disposeAsync();
// Logs: Disposed!
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.