Horje
fetch await Code Example
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)); 
Source: dev.to
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
jquery datatable get data array Code Example jquery datatable get data array Code Example
express js limit access based on rate Code Example express js limit access based on rate Code Example
Cannot read property 'getAuthInstance' of undefined Code Example Cannot read property 'getAuthInstance' of undefined Code Example
array.reduce where object value is highest Code Example array.reduce where object value is highest Code Example
nexe Error: vcbuild.bat nosign release x64 exited with code: 1 Code Example nexe Error: vcbuild.bat nosign release x64 exited with code: 1 Code Example

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