Articles tagged: Promise
Found 16 documents
- Mozilla/JavaScript_code_modules/Promise.jsm/Deferred A Deferred object is returned by the obsolete Promise.defer() method to provide a new promise ...
- Web/API/Fetch_API/Using_Fetch This kind of functionality was previously achieved using XMLHttpRequest. Fetch provides a better ...
- Web/API/OfflineAudioContext/startRendering(promise) The promise-based startRendering() method of the OfflineAudioContext Interface starts rendering ...
- Web/API/PresentationRequest/reconnect When the reconnect (presentationId) method is called on a PresentationRequest ...
- Web/API/PromiseRejection/promise The promise read-only property of the PromiseRejection returns the ID of the Promise that the ...
- Web/API/PromiseRejectionEvent/promise The PromiseRejectionEvent.promise read-only property indicates the JavaScript Promise which has ...
- Web/Events/rejectionhandled The rejectionhandled event is fired when a JavaScript Promise is rejected, and after the ...
- Web/Events/unhandledrejection The unhandledrejection event is fired when a JavaScript Promise is rejected but there is no ...
- Web/JavaScript/Reference/Global_Objects/Promise The Promise object is used for asynchronous computations. A Promise represents a value which may ...
- Web/JavaScript/Reference/Global_Objects/Promise/all The Promise.all(iterable) method returns a promise that resolves when all of the promises in the ...
- Web/JavaScript/Reference/Global_Objects/Promise/catch The catch() method returns a Promise and deals with rejected cases only. It behaves the same as ...
- Web/JavaScript/Reference/Global_Objects/Promise/prototype The Promise.prototype property represents the prototype for the Promise constructor.
- Web/JavaScript/Reference/Global_Objects/Promise/race The Promise.race(iterable) method returns a promise that resolves or rejects as soon as one of ...
- Web/JavaScript/Reference/Global_Objects/Promise/reject The Promise.reject(reason) method returns a Promise object that is rejected with the given reason.
- Web/JavaScript/Reference/Global_Objects/Promise/resolve The Promise.resolve(value) method returns a Promise object that is resolved with the given ...
- Web/JavaScript/Reference/Global_Objects/Promise/then The then() method returns a Promise. It takes two arguments: callback functions for the success ...