Skip to content

Instantly share code, notes, and snippets.

@jsmanifest
Created July 4, 2019 18:50
Show Gist options
  • Select an option

  • Save jsmanifest/380802779dfe4a3ddbcb923e74604ea4 to your computer and use it in GitHub Desktop.

Select an option

Save jsmanifest/380802779dfe4a3ddbcb923e74604ea4 to your computer and use it in GitHub Desktop.
const store = {
people: {
joe: {
age: 16,
gender: 'boy',
},
bob: {
age: 14,
gender: 'transgender',
}
}
}
return {
getPersonsProfile(name) {
return store.people[name] || {}
},
foods: ['apple', 'pineapple'],
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment