<aside> 👉 A brief intro to async/await using promises as a starting point

</aside>

Original fetch & promises workshop

Learn Fetch & Promises

Adapted from Challenge 4, using promises

function fetchPokemon() {
  fetch("<https://pokeapi.co/api/v2/pokemon/pikachu>")
    .then((response) => response.json())
    .then((pikachu) => console.log(pikachu))
    .catch((error) => console.log(error));
}

fetchPokemon();

Refactored, using async/await

async function fetchPokemon() {
  try {
    const response = await fetch("<https://pokeapi.co/api/v2/pokemon/pikachu>");
    const pikachu = await response.json();
    console.log(pikachu);
  } catch (error) { console.error(error); }
}

fetchPokemon();

What's Happening in Each Snippet?

Original Snippet (Using Promises):

Refactored Snippet (Using Async/Await):

Differences Between the Snippets:

  1. Syntax and Readability: