promise all await example not working
Example: promise.all async await
async function fetchABC() {
const [a, b, c] = await Promise.all([a(), b(), c()]);
}
async function fetchABC() {
const [a, b, c] = await Promise.all([a(), b(), c()]);
}