> For the complete documentation index, see [llms.txt](https://program.hackyourfuture.dk/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://program.hackyourfuture.dk/course-content/frontend/advanced-javascript/week3.md).

# Week 3

In this session, you'll learn how to write asynchronous code that is both efficient and easy to understand. We'll explore Promises and the `async`/`await` syntax, which allow you to handle long-running operations—such as network requests—without blocking the user interface. Mastering these techniques is key to building responsive applications that deliver a smooth user experience.

## Contents

* [Preparation](/course-content/frontend/advanced-javascript/week3/preparation.md)
* [Session Plan](/course-content/frontend/advanced-javascript/week3/session-plan.md) (for mentors)
* [Exercises](/course-content/frontend/advanced-javascript/week3/exercises.md)
* [Assignment](/course-content/frontend/advanced-javascript/week3/assignment.md)

## Session Learning Goals

By the end of this session, you will be able to:

* [ ] Use **Promises** to run asynchronous code.
  * [ ] Understand the anatomy of a Promise and how to use it
  * [ ] Using `.then()` to add callback behaviour
  * [ ] Using `.catch()` to handle errors
  * [ ] Chaining multiple `.then()`
* [ ] Use `async` and `await` to make your code more readable
  * [ ] Defining `async` functions
  * [ ] Using `await` when calling `async` functions
  * [ ] Error handling using `await`

```js
// Example: Using promise with .then()
let user1;
fetch("https://jsonplaceholder.typicode.com/users/1")
  .then((response) => (user1 = response.json()))
  .then(() => console.log("User 1:", user1))
  .catch(() => (user1 = null));

// Example: Using promise with async/await
async function getUser() {
  try {
    const response = await fetch(
      "https://jsonplaceholder.typicode.com/users/2",
    );
    const user = await response.json();
    return user;
  } catch (error) {
    return null;
  }
}
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://program.hackyourfuture.dk/course-content/frontend/advanced-javascript/week3.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
