We're a place where coders share, stay up-to-date and grow their careers.
Even so ?
async function getUser(user) { const { data } = await get`https://api.github.com/users/${user}`; }
Using:
getUser`vahe`
I don't want to misunderstand. This post so informative. Thanks for this. I just don't like this syntax :D
But this syntax acceptable. Which means, we'll use some libraries that use this syntax.
async function getUser(user) { const { data } = await get`https://api.github.com/users/${user}`; return data; } getUser("google").then(res => { console.log(res); });
Even so ?
Using:
I don't want to misunderstand. This post so informative. Thanks for this. I just don't like this syntax :D
But this syntax acceptable. Which means, we'll use some libraries that use this syntax.