johnny-dreamguns
10/7/2019 - 9:41 PM

Async Await

// Async / await

var request = async () => {
  const response = await fetch('_https://jsonplaceholder.typicode.com/todos/3_');
  var { id } = await response.json();
  console.log(id)
}
request();