content
content copied to clipboard
promise: see also AbortController
Description
Add a link to AbortController
in See Also.
Motivation
I couldn't remember how to cancel a promise in JavaScript, and I looked here but there wasn't any mention of "cancel".
Preview URLs
(comment last updated: 2024-06-09 19:29:21)
I think AbortController
has no relationship with Promise
. AbortController
(and AbortSignal
) can be used in some APIs to cancel some operation in Web API, but it can't be used to cancel a Promise
The relationship is 'I have a async operation/Promise I want to cancel/be cancellable, where do I look next?'. see also: #33347