Promise() constructor
Baseline
Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
The Promise() constructor creates Promise objects. It is primarily used to wrap callback-based APIs that do not already support promises.
Try it
const promise1 = new Promise((resolve, reject) => {
setTimeout(() => {
resolve("foo");
}, 300);
});
promise1.then((value) => {
console.log(value);
// Expected output: "foo"
});
console.log(promise1);
// Expected output: [object Promise]
Syntax
new Promise(executor)
Parameters
Return value
When called via new, the Promise constructor returns a promise object. The promise object will become resolved when either of the functions resolveFunc or rejectFunc are invoked. Note that if you call resolveFunc and pass another promise object as an argument, the initial promise can be said to be "resolved", but still not "settled". See the Promise description for more explanation.
Description
Traditionally (before promises), asynchronous tasks were designed as callbacks.
readFile("./data.txt", (error, result) => {
// This callback will be called when the task is done, with the
// final `error` or `result`. Any operation dependent on the
// result must be defined within this callback.
});
// Code here is immediately executed after the `readFile` request
// is fired. It does not wait for the callback to be called, hence
// making `readFile` "asynchronous".
To take advantage of the readability improvement and language features offered by promises, the Promise() constructor allows one to transform the callback-based API to a promise-based one.
Note:
If your task is already promise-based, you likely do not need the Promise() constructor.
The executor is custom code that ties an outcome in a callback to a promise. You, the programmer, write the executor. Its signature is expected to be:
function executor(resolveFunc, rejectFunc) {
// Typically, some asynchronous operation that accepts a callback,
// like the `readFile` function above
}
resolveFunc and rejectFunc are also functions, and you can give them whatever actual names you want. Their signatures are simple: they accept a single parameter of any type.
resolveFunc(value); // call on resolved
rejectFunc(reason); // call on rejected
The value parameter passed to resolveFunc can be another promise object, in which case the newly constructed promise's state will be "locked in" to the promise passed (as part of the resolution promise). The rejectFunc has semantics close to the throw statement, so reason is typically an Error instance. If either value or reason is omitted, the promise is fulfilled/rejected with undefined.
The executor's completion state has limited effect on the promise's state:
- The
executorreturn value is ignored.returnstatements within theexecutormerely impact control flow and alter whether a part of the function is executed, but do not have any impact on the promise's fulfillment value. Ifexecutorexits and it's impossible forresolveFuncorrejectFuncto be called in the future (for example, there are no async tasks scheduled), then the promise remains pending forever. - If an error is thrown in the
executor, the promise is rejected, unlessresolveFuncorrejectFunchas already been called.
Note: The existence of pending promises does not prevent the program from exiting. If the event loop is empty, the program exits despite any pending promises (because those are necessarily forever-pending).
Here's a summary of the typical flow:
- At the time when the constructor generates the new
Promiseobject, it also generates a corresponding pair of functions forresolveFuncandrejectFunc; these are "tethered" to thePromiseobject. executortypically wraps some asynchronous operation which provides a callback-based API. The callback (the one passed to the original callback-based API) is defined within theexecutorcode, so it has access to theresolveFuncandrejectFunc.- The
executoris called synchronously (as soon as thePromiseis constructed) with theresolveFuncandrejectFuncfunctions as arguments. - The code within the
executorhas the opportunity to perform some operation. The eventual completion of the asynchronous task is communicated with the promise instance via the side effect caused byresolveFuncorrejectFunc. The side effect is that thePromiseobject becomes "resolved".- If
resolveFuncis called first, the value passed will be resolved. The promise may stay pending (in case another thenable is passed), become fulfilled (in most cases where a non-thenable value is passed), or become rejected (in case of an invalid resolution value). - If
rejectFuncis called first, the promise instantly becomes rejected. - Once one of the resolving functions (
resolveFuncorrejectFunc) is called, the promise stays resolved. Only the first call toresolveFuncorrejectFuncaffects the promise's eventual state, and subsequent calls to either function can neither change the fulfillment value/rejection reason nor toggle its eventual state from "fulfilled" to "rejected" or opposite. - If
executorexits by throwing an error, then the promise is rejected. However, the error is ignored if one of the resolving functions has already been called (so that the promise is already resolved). - Resolving the promise does not necessarily cause the promise to become fulfilled or rejected (i.e., settled). The promise may still be pending because it's resolved with another thenable, but its eventual state will match that of the resolved thenable.
- If
- Once the promise settles, it (asynchronously) invokes any further handlers associated through
then(),catch(), orfinally(). The eventual fulfillment value or rejection reason is passed to the invocation of fulfillment and rejection handlers as an input parameter (see Chained Promises).
For example, the callback-based readFile API above can be transformed into a promise-based one.
const readFilePromise = (path) =>
new Promise((resolve, reject) => {
readFile(path, (error, result) => {
if (error) {
reject(error);
} else {
resolve(result);
}
});
});
readFilePromise("./data.txt")
.then((result) => console.log(result))
.catch((error) => console.error("Failed to read data"));
The resolve and reject callbacks are only available within the scope of the executor function, which means you can't access them after the promise is constructed. If you want to construct the promise before deciding how to resolve it, you can use the Promise.withResolvers() method instead, which exposes the resolve and reject functions.
The resolve function
The resolve function has the following behaviors:
- If it's called with the same value as the newly created promise (the promise it's "tethered to"), the promise is rejected with a
TypeError. - If it's called with a non-thenable value (a primitive, or an object whose
thenproperty is not callable, including when the property is not present), the promise is immediately fulfilled with that value. - If it's called with a thenable value (including another
Promiseinstance), then the thenable'sthenmethod is saved and called in the future (it's always called asynchronously). Thethenmethod will be called with two callbacks, which are two new functions with the exact same behaviors as theresolveFuncandrejectFuncpassed to theexecutorfunction. If calling thethenmethod throws, then the current promise is rejected with the thrown error.
In the last case, it means code like:
new Promise((resolve, reject) => {
resolve(thenable);
});
Is roughly equivalent to:
new Promise((resolve, reject) => {
try {
thenable.then(
(value) => resolve(value),
(reason) => reject(reason),
);
} catch (e) {
reject(e);
}
});
Except that in the resolve(thenable) case:
resolveis called synchronously, so that callingresolveorrejectagain has no effect, even when the handlers attached throughanotherPromise.then()are not called yet.- The
thenmethod is called asynchronously, so that the promise will never be instantly resolved if a thenable is passed.
Because resolve is called again with whatever thenable.then() passes to it as value, the resolver function is able to flatten nested thenables, where a thenable calls its onFulfilled handler with another thenable. The effect is that the fulfillment handler of a real promise will never receive a thenable as its fulfillment value.
Examples
>Turning a callback-based API into a promise-based one
To provide a function with promise functionality, have it return a promise by calling the resolve and reject functions at the correct times.
function myAsyncFunction(url) {
return new Promise((resolve, reject) => {
const xhr = new XMLHttpRequest();
xhr.open("GET", url);
xhr.onload = () => resolve(xhr.responseText);
xhr.onerror = () => reject(xhr.statusText);
xhr.send();
});
}
Effect of calling resolveFunc
Calling resolveFunc causes the promise to become resolved, so that calling resolveFunc or rejectFunc again has no effect. However, the promise may be in any of the states: pending, fulfilled, or rejected.
This pendingResolved promise is resolved the time it's created, because it has already been "locked in" to match the eventual state of the inner promise, and calling resolveOuter or rejectOuter or throwing an error later in the executor has no effect on its eventual state. However, the inner promise is still pending until 100ms later, so the outer promise is also pending:
const pendingResolved = new Promise((resolveOuter, rejectOuter) => {
resolveOuter(
new Promise((resolveInner) => {
setTimeout(() => {
resolveInner("inner");
}, 100);
}),
);
});
This fulfilledResolved promise becomes fulfilled the moment it's resolved, because it's resolved with a non-thenable value. However, when it's created, it's unresolved, because neither resolve nor reject has been called yet. An unresolved promise is necessarily pending:
const fulfilledResolved = new Promise((resolve, reject) => {
setTimeout(() => {
resolve("outer");
}, 100);
});
Calling rejectFunc obviously causes the promise to reject. However, there are also two ways to cause the promise to instantly become rejected even when the resolveFunc callback is called.
// 1. Resolving with the promise itself
const rejectedResolved1 = new Promise((resolve) => {
// Note: resolve has to be called asynchronously,
// so that the rejectedResolved1 variable is initialized
setTimeout(() => resolve(rejectedResolved1)); // TypeError: Chaining cycle detected for promise #<Promise>
});
// 2. Resolving with an object which throws when accessing the `then` property
const rejectedResolved2 = new Promise((resolve) => {
resolve({
get then() {
throw new Error("Can't get then property");
},
});
});
Specifications
| Specification |
|---|
| ECMAScript® 2026 Language Specification> # sec-promise-constructor> |
Browser compatibility
Loading…