The async functions are an easy way to create and work with promises. In this recipe, we'll see a basic form of this.
Creating promises with an async function
Getting ready
This recipe assumes you already have a workspace that allows you to create and run ES modules in your browser. If you don't, please see the first two chapters.
How to do it...
- Open your command-line application and navigate to your workspace.
- Create a new folder named 04-01-creating-Promise-with-async.
- Copy or create an index.html that loads and runs a main function from main.js.
- Create a...