-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |