Skip to content

Instantly share code, notes, and snippets.

@JohnMarkT
Created July 13, 2018 18:53
Show Gist options
  • Save JohnMarkT/a4b084c45e27adbf7207adeb3bdc7b45 to your computer and use it in GitHub Desktop.
Save JohnMarkT/a4b084c45e27adbf7207adeb3bdc7b45 to your computer and use it in GitHub Desktop.
Get full name from user object
const getFullname = u => [u.first, u.middle, u.last].filter(Boolean).join(' ')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment