Answers for "how to access promise result from api response"

1

get promise result from json() javascript

// Full request
fetch(myRequest)
  .then(response => response.json())
  .then(data => {
      console.log(data);
});
  
// Function that returns response
myFunction().then(data => {
  	console.log(data);
});
Posted by: Guest on October-05-2020
0

How to access return value of promise

const address = fetch("https://jsonplaceholder.typicode.com/users/1")
  .then((response) => response.json())
  .then((user) => {
    return user.address;
  });

const printAddress = async () => {
  const a = await address;
  console.log(a);
};

printAddress();
Posted by: Guest on December-04-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language