Skip to content

Latest commit

 

History

History
11 lines (7 loc) · 460 Bytes

File metadata and controls

11 lines (7 loc) · 460 Bytes

Promise Polyfills

This folder contains polyfills for asynchronous Promise methods.

Methods Included:

  1. Promise.all (_01_promise_all.js): Waits for all promises to be resolved or any one to be rejected.
  2. Promise.allSettled (_02_promise_allSettled.js): Waits for all promises to settle (either fulfilled or rejected).

Why Polyfills?

Understanding the mechanics of Promise methods is crucial for mastering asynchronous JavaScript.