Skip to content

Instantly share code, notes, and snippets.

@natsuki-engr
Created May 25, 2024 14:17
Show Gist options
  • Save natsuki-engr/371847bbcffd6b72507bcea2921f5826 to your computer and use it in GitHub Desktop.
Save natsuki-engr/371847bbcffd6b72507bcea2921f5826 to your computer and use it in GitHub Desktop.
js code using async/await and then as an anti-pattern that might confuse js beginners.
async function fetchUser(id) {
const data = await fetch(`/user/${id}`)
.then(res => res.json())
return data
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment