You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: fundamentals/promises.md
+10-1Lines changed: 10 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -98,7 +98,16 @@ Let's analyze the code snippet of Listing 2 a bit more in light of what we have
98
98
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.
99
99
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.
100
100
101
-
See also:
101
+
Our previous students also enjoyed learning about promises at:
0 commit comments