async function fetchJson
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));
async function fetchJson
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));
async fetch api call
async function getUserAsync(name) { try{ let response = await fetch(`https://api.github.com/users/${name}`); return await response.json(); }catch(err){ console.error(err); // Handle errors here } }
How to fetch data from an api async and await
async function fetchData() { try { const result = await axios.get("https://randomuser.me/api/") console.log(result.data)); } catch (error) { console.error(error); } }
async await
async function f() { try { let response = await fetch('/no-user-here'); let user = await response.json(); } catch(err) { // catches errors both in fetch and response.json alert(err); } } f();
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us