Answers for "what happens when we put await to the fetch function"

17

fetch await

async function getUserAsync(name) 
{
  let response = await fetch(`https://api.github.com/users/${name}`);
  let data = await response.json()
  return data;
}

getUserAsync('yourUsernameHere')
  .then(data => console.log(data));
Posted by: Guest on February-16-2020

Code answers related to "what happens when we put await to the fetch function"

Code answers related to "Javascript"

Browse Popular Code Answers by Language