Untitled fiddle
JavaScript
async function getProducts() {
let fetchAwaitWithoutAsync = await fetch('https://fakestoreapi.com/products/1');
console.log(fetchAwaitWithoutAsync);
}
getProducts();
async function getProducts() {
let fetchAwaitWithoutAsync = await fetch('https://fakestoreapi.com/products/1');
console.log(fetchAwaitWithoutAsync);
}
getProducts();