15
loading...
This website collects cookies to deliver better user experience
reyBear
function which has onereyBear
function has been called. const response = await fetch(resource, options);
fetch()
which starts a request and returns a promise.async function fetchDogs() {
const response = await fetch('/dogs');
console.log(response);
}
async
keyword.