AsyncDisposableStack() constructor
En esta página
The AsyncDisposableStack() constructor creates {{jsxref("AsyncDisposableStack")}} objects.
Syntax#
new AsyncDisposableStack()
[!NOTE]
AsyncDisposableStack()can only be constructed withnew. Attempting to call it withoutnewthrows a {{jsxref("TypeError")}}.
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#
{{Specifications}}
Browser compatibility#
{{Compat}}