Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

README.md

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.