This is a heavily interactive web application, and JavaScript is required. Simple HTML interfaces are possible, but that is not what this is.
Post
MDN Web Docs
developer.mozilla.org
did:plc:a4klb3lge3phlc4az4uspfpo
Wait for all promises, even the failing ones š
`Promise.allSettled()` waits for every promise to finish, success or failure.
ā
Returns { status: 'fulfilled', value } or { status: 'rejected', reason }
ā
Perfect for batch operations
Learn more š
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise/allSettled
2026-05-10T16:00:20.970Z