> 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/backend/advanced-javascript/week3.md).

# Week 3

Last week you learned about callbacks - functions that run later. You saw how nesting callbacks gets messy ("callback hell"). This week, you'll learn Promises and async/await - cleaner ways to handle asynchronous operations.

This week you'll work with a real API: the Tea Shop backend. You'll fetch data, handle errors, and chain operations - just like you would when building real backend services.

## Contents

* [Preparation](/course-content/backend/advanced-javascript/week3/preparation.md)
* [Slides](https://github.com/HackYourFuture-CPH/program/blob/main/courses/backend/advanced-javascript/week3/session-materials/slides/index.html)
* [Session Plan](/course-content/backend/advanced-javascript/week3/session-plan.md) (for mentors)
* [Session Materials](https://github.com/HackYourFuture-CPH/program/blob/main/courses/backend/advanced-javascript/week3/session-materials/README.md)
* [Assignment](/course-content/backend/advanced-javascript/week3/assignment.md)

## Learning Goals

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

* [ ] Understand why Promises exist (solving callback hell)
* [ ] Consume Promises with `.then()` and `.catch()`
* [ ] Chain multiple `.then()` calls
* [ ] Create your own Promises with `new Promise()`
* [ ] Use `async`/`await` syntax for cleaner code
* [ ] Handle errors with `try`/`catch` in async functions
* [ ] Run multiple Promises in parallel with `Promise.all()`
* [ ] Fetch data from APIs using `fetch()`

### After this session you will understand code like this

```js
// From callback hell...
validateOrder(order, (err, valid) => {
  if (err) return handleError(err);
  calculateTotal(order, (err, total) => {
    if (err) return handleError(err);
    checkStock(order, (err, inStock) => {
      if (err) return handleError(err);
      // deeply nested...
    });
  });
});

// ...to clean async/await
async function processOrder(order) {
  const valid = await validateOrder(order);
  const total = await calculateTotal(order);
  const inStock = await checkStock(order);
  return { valid, total, inStock };
}
```


---

# 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/backend/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.
