Skip to content

Instantly share code, notes, and snippets.

@gotenxds
Created January 19, 2018 21:06
Embed
What would you like to do?
async function rainSomeCatsAndDogs() {
const [dogs, cats] = await Promise.all([getDogs(), getCats()]);
 
await makeItRain(cats, dogs);
await openAnimalProffUmbrella();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment