Untitled fiddle

by narensrinivasans

JavaScript

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

getProducts();