Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
mohamedkhallouq
GitHub Repository: mohamedkhallouq/content
Path: blob/main/files/en-us/web/api/abortsignal/aborted/index.md
6552 views
---
title: AbortSignal.aborted slug: Web/API/AbortSignal/aborted page-type: web-api-instance-property browser-compat: api.AbortSignal.aborted
---

{{APIRef("DOM")}}

The aborted read-only property returns a value that indicates whether the DOM requests 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 {{domxref("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.

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

Specifications

{{Specifications}}

Browser compatibility

{{Compat}}

See also