Skip to content

Instantly share code, notes, and snippets.

@Ibro
Created December 9, 2017 07:20
Embed
What would you like to do?
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