diff --git a/concepts/async-await/.meta/config.json b/concepts/async-await/.meta/config.json new file mode 100644 index 0000000000..3513b58148 --- /dev/null +++ b/concepts/async-await/.meta/config.json @@ -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": [] +} + \ No newline at end of file diff --git a/concepts/async-await/about.md b/concepts/async-await/about.md new file mode 100644 index 0000000000..e69de29bb2 diff --git a/concepts/async-await/introduction.md b/concepts/async-await/introduction.md new file mode 100644 index 0000000000..3d07efe555 --- /dev/null +++ b/concepts/async-await/introduction.md @@ -0,0 +1,2 @@ +# Introduction + diff --git a/concepts/async-await/links.json b/concepts/async-await/links.json new file mode 100644 index 0000000000..b5e29f935a --- /dev/null +++ b/concepts/async-await/links.json @@ -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()" + } + ] \ No newline at end of file