Skip to content

Instantly share code, notes, and snippets.

@aloverso
Last active December 11, 2020 04:17
Show Gist options
  • Save aloverso/756d31208856321ee72129009044eb2b to your computer and use it in GitHub Desktop.
Save aloverso/756d31208856321ee72129009044eb2b to your computer and use it in GitHub Desktop.
const getName = (response: ApiResponse): string => {
let fullName = "";
if (response.person.firstName && response.person.lastName) {
fullName = `${response.person.firstName} ${response.person.lastName}`
}
return fullName;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment