Skip to content

Instantly share code, notes, and snippets.

@Ibro
Last active December 11, 2017 08:29
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Ibro/c00b73388226fd4c40059b6c4bcd570b to your computer and use it in GitHub Desktop.
Save Ibro/c00b73388226fd4c40059b6c4bcd570b to your computer and use it in GitHub Desktop.
export default class UserHelpers {
static getFullName(user) {
return `${user.firstName} ${user.lastName}`;
}
static getCategory(userPoints) {
return userPoints > 70 ? 'A' : 'B';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment