Skip to content

Instantly share code, notes, and snippets.

@arekgotfryd
Created February 18, 2018 21:10
Show Gist options
  • Save arekgotfryd/555a26ae25631e93093ca1846df7c5ac to your computer and use it in GitHub Desktop.
Save arekgotfryd/555a26ae25631e93093ca1846df7c5ac to your computer and use it in GitHub Desktop.
async function getFirstUser() {
//getUsers() returns Promise
let users = await getUsers();
return users[0].name;
}
let user = await getFirstUser();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment