Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save r37r0m0d3l/a91f51364ad7267ec3b3819c1ef7b256 to your computer and use it in GitHub Desktop.

Select an option

Save r37r0m0d3l/a91f51364ad7267ec3b3819c1ef7b256 to your computer and use it in GitHub Desktop.
async function getFullPost(){
return await Promise.all([
fetch('/post'),
fetch('/comments')
]);
}
const [post, comments] = getFullPost();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment