Skip to content

Instantly share code, notes, and snippets.

@mfrachet
Created June 1, 2022 08:55
Show Gist options
  • Save mfrachet/ec8c57ff11ffb67def0e7576eb205b28 to your computer and use it in GitHub Desktop.
Save mfrachet/ec8c57ff11ffb67def0e7576eb205b28 to your computer and use it in GitHub Desktop.
async
const getPokemon = async () => {
const response = await fetch();
const data = await response.json();
return data.results;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment