Skip to content

Instantly share code, notes, and snippets.

View natsuki-engr's full-sized avatar
🐤
piyo

natsuki ueda natsuki-engr

🐤
piyo
View GitHub Profile
@natsuki-engr
natsuki-engr / fetchUser.js
Created May 25, 2024 14:17
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
}