Skip to content

Instantly share code, notes, and snippets.

@Ibro
Last active December 11, 2017 08:29
Embed
What would you like to do?
import UserHelpers from './UserHelpers';
const alice = {
firstName: 'Alice',
lastName: 'Gray',
points: 78,
};
const fullName = UserHelpers.getFullName(alice);
const category = UserHelpers.getCategory(alice);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment