Horje
async fetch api call Code Example
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)); 
Source: dev.to
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
  }
}
fetch js async await
async function getData() {
   const response = await fetch('https://jsonplaceholder.typicode.com/users');
            const data = await response.json();
            const {
                id = data[1]['id'],
                name = data[1]['name'],
                username = data[1]['username'],
                email = data[1]['email'],
                address = data[1]['address']
            } = data
            console.log(data)
            console.log(`ID: ${id}`);
            console.log(`Name: ${name}`)
            console.log(`Email: ${email}`)
            console.log(`Username: ${username}`)
            console.log(address)
            console.log('Street: ' + address.street)
            console.log(address.suite)
        }
	getData();




Javascript

Related
regular expression to validate if the given input is valid Indian mobile number or not Code Example regular expression to validate if the given input is valid Indian mobile number or not Code Example
electron preload to renderer Code Example electron preload to renderer Code Example
character to ascii in js Code Example character to ascii in js Code Example
flutter text with icon Code Example flutter text with icon Code Example
javascript prepend string to array Code Example javascript prepend string to array Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
9