Skip to content

Instantly share code, notes, and snippets.

@AndrewJGregory
Created August 11, 2020 14:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AndrewJGregory/5fd7818732c10f1b2c27fba69940560c to your computer and use it in GitHub Desktop.
Save AndrewJGregory/5fd7818732c10f1b2c27fba69940560c to your computer and use it in GitHub Desktop.
async function getPeople() {
const members = await fetch("/members");
const nonMembers = await fetch("/non-members");
return members.concat(nonMembers);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment