Skip to content

Commit

Permalink
Create MoreQuestion_Promise.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ps0305 committed Jul 2, 2024
1 parent d6692c0 commit 3b091d0
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions Coding Interview Prep/MoreQuestion_Promise.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
* Build Your Own Custom Promise from Scratch

[Understand how JavaScript promises work by creating one from scratch. This will give you a solid grasp of the inner workings of promises.](https://www.youtube.com/watch?v=EpJm0A1sINU&t=1087s)

* Managing Promises with Priorities

[Learn how to handle promises in a prioritized manner. This is crucial for scenarios where certain tasks need to be completed before others.](https://www.youtube.com/watch?v=am8sQh6a9gw)

* Retrying Promises in JavaScript

[Sometimes promises fail, and retrying them can be essential. Know how to implement a retry mechanism for promises.](https://www.youtube.com/watch?v=dILl2cAfP9c&t=1082s)

* Promise.race: Create Your Own Polyfill in JavaScript

[Creating a polyfill for Promise.race helps you understand how it operates and can be useful for ensuring compatibility across different environments.](https://www.youtube.com/watch?v=kDLxSc4QRHY)

* Lookup Tables in JavaScript

[Lookup tables can optimize your code by providing quick access to data. Mastering this can significantly enhance your coding efficiency.](https://www.youtube.com/watch?v=J2NWRmEgIvI)

0 comments on commit 3b091d0

Please sign in to comment.