Description of JavaScript Promises in JavaScript Roadmap (#1646)
* Description of JavaScript Promises * Updated the markdown file to the desired formatpull/1657/head
parent
aaedd26c68
commit
ff24f99471
1 changed files with 9 additions and 1 deletions
@ -1 +1,9 @@ |
||||
# Promises |
||||
# Promises |
||||
|
||||
Promises are a much better way to work with asynchronous code in JavaScript than the old and error-prone callback approach. They were introduced into JavaScript with ECMAScript 6. Using promises, we can manage extremely complex asynchronous code with rigorous error-handling set up, write code in a more or less synchronous style, and keep ourselves from running into the so-called callback hell. |
||||
|
||||
<ResourceGroupTitle>Free Content</ResourceGroupTitle> |
||||
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://www.codeguage.com/courses/advanced-js/promises-introduction'>A Detailed Introduction to Promises</BadgeLink> |
||||
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://www.codeguage.com/courses/advanced-js/promises-basics'>JavaScript Promises - Basics</BadgeLink> |
||||
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://www.codeguage.com/courses/advanced-js/promises-chaining'>JavaScript Promises - Chaining</BadgeLink> |
||||
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://www.codeguage.com/courses/advanced-js/promises-error-handling'>JavaScript Promises - Error Handling</BadgeLink> |
||||
|
Loading…
Reference in new issue