From 20e02c051e4786bb66c5f180ded49c919a53c67e Mon Sep 17 00:00:00 2001 From: Gurjinder Singh Date: Fri, 20 May 2022 07:24:50 -0400 Subject: [PATCH 1/2] created async-await folder under concepts and all the files that go with it --- concepts/async-await/.meta/config.json | 6 ++++++ concepts/async-await/about.md | 0 concepts/async-await/introduction.md | 0 concepts/async-await/links.json | 10 ++++++++++ 4 files changed, 16 insertions(+) create mode 100644 concepts/async-await/.meta/config.json create mode 100644 concepts/async-await/about.md create mode 100644 concepts/async-await/introduction.md create mode 100644 concepts/async-await/links.json 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..e69de29bb2 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 From a16ef535807e22bfcccc07df95ab1c2bc61caa27 Mon Sep 17 00:00:00 2001 From: Gurjinder Singh Date: Fri, 20 May 2022 16:06:25 -0400 Subject: [PATCH 2/2] wrote introduction --- concepts/async-await/introduction.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/concepts/async-await/introduction.md b/concepts/async-await/introduction.md index e69de29bb2..3d07efe555 100644 --- a/concepts/async-await/introduction.md +++ b/concepts/async-await/introduction.md @@ -0,0 +1,2 @@ +# Introduction +