javascript response json then code example

Example 1: fetch api in javascript

// GET Request.
fetch('https://jsonplaceholder.typicode.com/users')
    // Handle success
    .then(response => response.json())  // convert to json
    .then(json => console.log(json))    //print data to console
    .catch(err => console.log('Request Failed', err)); // Catch errors

Example 2: 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);
});