[JavaScript/ES6] Promise Usage, Introduction, and Learning Resources Summary

Tadashi Shigeoka ·  Mon, July 17, 2017

I’ll introduce a summary of Promise usage, introductory articles, learning materials, and books that were introduced with JavaScript (ECMAScript 6: ES6).

JavaScript

Promise Introduction Articles and Books

To understand Promises, I recommend reading the following three resources (one article and one e-book) in order:

Promise Learning Materials

After reading Promise explanation articles and books, I think you need to actually use Promises to fully understand them.

There’s a learning material called promise-it-wont-hurt that uses the Workshopper module, so you can learn Promises hands-on with this.

promise-it-wont-hurt

Promise Explanation Articles

Finally, engineers have written explanation articles, so if you have time, reading through these should deepen your understanding.

Many of these break down and explain concepts after reading Google Developers, MDN, and the JavaScript Promise book, so they should be helpful when you can’t understand those three resources.

That’s all from the Gemba.