Skip to content

Instantly share code, notes, and snippets.

@Ibro
Last active December 11, 2017 08:29
Embed
What would you like to do?
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