> For the complete documentation index, see [llms.txt](https://openai.gitbook.io/code-cheatsheets/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://openai.gitbook.io/code-cheatsheets/js/async-and-await.md).

# Async and Await

ES6, builds off of promises and very similar to python's asyncio

```javascript
async function catFetch(userId) {
    const response = await fetch('....')
    return await response.json();
}
```

Async functions return a promise and let you use await whihc waits on promises

If the awaiting(only one await at a time) is limiting you can always fall back on promises

### Wait with

```javascript
function delay(timeout) {
  return new Promise((resolve) => {
    setTimeout(resolve, timeout);
  });
}
async function ... {
    ....
    await delay(3000);
}
```

## Async Ft == Promise

```javascript
async function main () {
    //....
}

main()
  .then(() => console.log("COMPLETE"))
  .catch(console.error);
```

### Can just use async functions in a promise

```javascript
configPromise.then(async (econfig) => {
  debug("Econfig", econfig);
  const test = await updateStorage(econfig);
});

new Promise(async (resolve, reject) => {
  const result = await browser.management.getSelf();
  //..
```

*Look at babel runtime to get in the browser*
