Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit a0a38a6

Browse files
authored
Merge pull request HackYourFuture#39 from HackYourFuture/gijscor-patch-1
Update promises.md
2 parents 6809091 + 1071b84 commit a0a38a6

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

fundamentals/promises.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,16 @@ Let's analyze the code snippet of Listing 2 a bit more in light of what we have
9898
3. In the second `.then()` the arrow function `html => renderList($repoList, html)` uses the HTML string (the fulfillment value of the first `.then()`) to render the repo data to DOM.
9999
4. The callback function from `.catch()` is only called when one of the promises in the chain is rejected. Otherwise is not called at all.
100100

101-
See also:
101+
Our previous students also enjoyed learning about promises at:
102+
103+
In text:
104+
- http://javascript.info/promise-basics|
105+
- https://blog.cloudboost.io/explaining-basic-javascript-promises-in-jip-en-janneketaal-c98763c0abd6
106+
- https://medium.com/javascript-scene/master-the-javascript-interview-what-is-a-promise-27fc71e77261
107+
108+
Video: The net Ninja: https://www.youtube.com/watch?v=yswb4SkDoj0
109+
110+
MDN:
102111
- [MDN - Promise definition](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise)
103112
- [MDN - Using Promises](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Using_promises)
104113
- [Promises/A+ specification](https://promisesaplus.com/)

0 commit comments

Comments
 (0)