JSFiddle - React, Tailwind, and code Playground

by Slava Slava

JavaScript

const bb = Array.from({ length: 5}, async () => {
  const resp = await fetch('https://yesno.wtf/api');
  return await resp.json();
})


Promise.all(bb).then(console.log
)