We know that Promise.all
returns a single Promise that resolves when all of the promises in the iterable argument have resolved or when the iterable argument contains no promises. It rejects with the reason of the first promise that rejects.
Is it possible to return all resolved promises and skip rejected ones?
UPD: Thank you all) This duplicate question solved with Wait until all ES6 promises complete, even rejected promises