Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions concepts/async-await/.meta/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"blurb": "Async/Await is synthic sugar for promises and allows asynchronous behavior to be written more easily.",
"authors": ["Rocky Singh"],
"contributors": []
}

Empty file added concepts/async-await/about.md
Empty file.
2 changes: 2 additions & 0 deletions concepts/async-await/introduction.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Introduction

10 changes: 10 additions & 0 deletions concepts/async-await/links.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
[
{
"url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/async_function",
"description": "MDN: async function"
},
{
"url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise/resolve",
"description": "MDN: Promise.resolve()"
}
]