wiki/content/20201111095230-producing_promises.md

450 B

date id title
2020-11-11 e059aba7-2912-4a54-8c04-dbb6fbd3d0a7 Producing Promises

Advice

Use Async functions instead of this.

Syntax

const p = new Promise(
    function (resolve, reject) { // (A)
        if (true /* replace true with your own logic */) {
            resolve(value); // success
        } else {
            reject(reason); // failure
        }
    });