This folder contains polyfills for asynchronous Promise methods.
- Promise.all (
_01_promise_all.js): Waits for all promises to be resolved or any one to be rejected. - Promise.allSettled (
_02_promise_allSettled.js): Waits for all promises to settle (either fulfilled or rejected).
Understanding the mechanics of Promise methods is crucial for mastering asynchronous JavaScript.