Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

async awiat

const data = async ()  => {
  const got = await fetch('https://jsonplaceholder.typicode.com/todos/1');
  
  console.log(await got.json())
}

data();
Comment

async await

// example using promise
const user = () => {
	fetch("https://randomuser.me/api/?results=1")
    .then((data) => {
         console.log(data); // here you recive data
    }).catch((err)=>{
         console.log(err); // here error
    });
}

// example using async/await

const user = async () => {
  	// you must have use async keyword before use await
	const data = await fetch("https://randomuser.me/api/?results=1");
  	console.log(data); // if error occured it will be null or empty
}
Comment

async await

//used in node.js
const fetch = require('node-fetch');
async function Showuser() {
  const result = await fetch('https://jsonplaceholder.typicode.com/todos/1');
  const date = await result.json();
  console.log(date);
}

Showuser();
Comment

async await

// ASYNC will always returns promises
// NOTE : AWAIT should be kept only inside ASYNC function
// AWAIT can't be used in regular function
/* TIPS : Js is single threaded & synchronous in nature BUT, we can
          make it as asyncronous by using (ASYNC/AWAIT)*/

//(Example 1 : fetching Random Image)
async function RandomImage(){  //remember async and await is powerful for async operations, always await should be inside of async only.

  try {
    const raw_response = await fetch("https://www.themealdb.com/api/json/v1/1/random.php");
      if (!raw_response.ok) { // check for the 404 errors
          throw new Error(raw_response.status);
      }
    const json_data = await raw_response.json();  //AWAIT
    let data = json_data.meals[0];

    console.log(data);
  }
  catch (error) { // catch block for network errors
      console.log(error); 
  }
}
RandomImage();


//(Example 2 : returning another promise)
console.log("1 is working");
console.log("2 is working");
  var AsyncFunction = async() => {
    var x = new Promise((resolve,reject) => {
        setTimeout(() => resolve("3 is working"), 3000);
    });
    var result = await x;
    return result;
  }
AsyncFunction().then(resolved => console.log(resolved));
console.log("3 is working");
Comment

async await

async function showAvatar() {
	// read
  	await setTimeout(resolve, 3000);
    // read next 3s
}

showAvatar();
Comment

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();
Comment

Async/Await

async function run () {
  const user = await getUser()
  const tweets = await getTweets(user)
  return [user, tweets]
}
 
 
Comment

async await

async function () {
  const fetchAPI = fetch(`https://bn-hadith-api.herokuapp.com/hadiths/0`);
  const response = await fetchAPI;
  const data = await response.json();
  console.log(data);
}
Comment

async awiat

function resolveAfter2Seconds() {
  return new Promise(resolve => {
    setTimeout(() => {
      resolve('resolved');
    }, 2000);
  });
}

async function asyncCall() {
  console.log('calling');
  const result = await resolveAfter2Seconds();
  console.log(result);
  // expected output: "resolved"
}

asyncCall();
Comment

async await

async function abc() {
    console.log("1");
    const response = await fetch("https://jsonplaceholder.typicode.com/users");
    console.log("4");
    const users = await response.json();
    console.log("5");
    return users;
  }
  
  const a = abc();
  
  a.then((e) => {
    console.log(e);
  });
  console.log("2");
  console.log(a);
  console.log("3");
Comment

await async

function afterPrintSave() {
    Xrm.Page.data.save().then(
        function () {
            resolve();
        },
        function (err) {
            resolve(alert(err.message));
        }
    );
}
Comment

PREVIOUS NEXT
Code Example
Javascript :: file upload javascript 
Javascript :: create a json object in javascript 
Javascript :: ts node cannot use import statement outside a module 
Javascript :: javascript null or empty 
Javascript :: change localhost react 
Javascript :: javascript get last object in foreach loop 
Javascript :: vue get if checkbox is checked 
Javascript :: create react app with vite 
Javascript :: sort an array of objects in javascript 
Javascript :: form data object 
Javascript :: Mars Exploration problem in js 
Javascript :: pattern validator angular 
Javascript :: vscode 
Javascript :: how to normalize string in javascript 
Javascript :: express req get json 
Javascript :: js how to filter only real numbers from decimals 
Javascript :: express error middleware 
Javascript :: MongoDb user find 
Javascript :: gesture handling with react native expo 
Javascript :: inline styling in react 
Javascript :: javascript get call stack 
Javascript :: regex start line 
Javascript :: active navbar in page reactjs 
Javascript :: how to send axios delete to the backend reactjs 
Javascript :: JavaScript Number() Function 
Javascript :: Select all elements with the same tag 
Javascript :: swap two variables javascript 
Javascript :: js get node index 
Javascript :: upload excel file using jquery ajax 
Javascript :: return a date time object in yyyy-mm-dd hr:min:sec 
ADD CONTENT
Topic
Content
Source link
Name
7+8 =