Skip to content

Instantly share code, notes, and snippets.

@Ibro
Created December 9, 2017 07:20
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 Ibro/7f061f7ce89bcc7b0a761a2aeda53679 to your computer and use it in GitHub Desktop.
Save Ibro/7f061f7ce89bcc7b0a761a2aeda53679 to your computer and use it in GitHub Desktop.
export function getUserFullName(user) {
return `${user.firstName} ${user.lastName}`;
}
export function getUserCategory(userPoints) {
return userPoints > 70 ? 'A' : 'B';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment