SoFunction
Updated on 2025-04-03

Detailed explanation of the usage of ES6

The () method is also to wrap multiple Promise instances into a new Promise instance.

const p = ([p1, p2, p3]);

In the above code, as long as an instance in p1, p2, and p3 is the first to change the state, the state of p will change as a result. The return value of the Promise instance that was first changed is passed to the callback function of p.

The parameters of the () method are the same as the () method. If it is not a Promise instance, the () method mentioned below will be called first, convert the parameters into a Promise instance, and then further processing.

    let x = 10;
    let p1 = new Promise((resolve) => {
       setTimeout(()=>resolve("p1 hello" + x),2000);
    })
        .then((res) => {
            (`p1 then Output${res}`);
            return res;
        });
    let p2 = new Promise((resolve) => {
        setTimeout(()=> resolve("p2 hello" + x),2000);;
    })
        .then((res) => {
            (`p2 then Output${res}`);
            return res;
        });
    let p3 = new Promise((resolve) => {
        setTimeout(()=>resolve("p3 hello" + x),2000);;
    })
        .then((res) => {
            (`p3 then Output${res}`);
            return res;
        });
    let p4 = new Promise((resolve) => {
        setTimeout(()=>resolve("p4 hello" + x),2000);;
    })
        .then((res) => {
            (`p4 then Output${res}`);
            return res;
        });
    ([p1, p2, p3, p4])
        .then(result => (result))
        .catch((e) => {
            ("f*cking man reported an error");
            (e);
        });

Output result: Only the Promise that changed the state first

This is the end of this article about the detailed explanation of the usage of ES6. For more related usage of ES6, please search for my previous articles or continue browsing the related articles below. I hope everyone will support me in the future!