Skip to content

Commit 39ec107

Browse files
committed
add changes 🐼
1 parent 6568011 commit 39ec107

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

chapter14/chapter14.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ The output is just what we wanted:
289289

290290
To summarize our basic promise implementation, we are not using the callback argument on the main function to pass the value, but we are using the callback argument on the `then` method. The callback argument value is a function which is executed later just like with the regular callback pattern.
291291

292-
Of course standard (ES6 or ES2015) promises have more features. This was just a basic (naive) implementation to show you that promises are simple and mostly about syntax.
292+
Of course [standard (ES6 or ES2015) promises have more features](https://promisesaplus.com). This was just a basic (naive) implementation to show you that promises are simple and mostly about syntax. [This list](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise#See_also) has good resources on learning promises in depth.
293293

294294
I hope this example demystified promises and make them less scary... if not then just use async/await function and you'll be good. The next section is on them.
295295

0 commit comments

Comments
 (0)