1. Web
  2. Web APIs
  3. AbortSignal
  4. aborted

AbortSignal: aborted property

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since ⁨April 2018⁩.

Note: This feature is available in Web Workers.

The aborted read-only property returns a value that indicates whether the asynchronous operations the signal is communicating with are aborted (true) or not (false).

Value

true (aborted) or false

Examples

In the following snippet, we create a new AbortController object, and get its AbortSignal (available using the signal property). Later on, using the aborted property, we check whether or not the signal has been aborted, and send an appropriate log to the console.

js
const controller = new AbortController();
const signal = controller.signal;
// ...
if (signal.aborted) {
 console.log("Request has been aborted");
} else {
 console.log("Request not aborted");
}

Specifications

Specification
DOM
# ref-for-dom-abortsignal-aborted1

Browser compatibility

See also

Help improve MDN

Learn how to contribute

This page was last modified on by MDN contributors.

AltStyle によって変換されたページ (->オリジナル) /