Skip to content

Instantly share code, notes, and snippets.

@krzysztofczernek
Created September 18, 2019 16:45
Show Gist options
  • Save krzysztofczernek/9f314eac9ca82203ea1a9596b625ed6b to your computer and use it in GitHub Desktop.
Save krzysztofczernek/9f314eac9ca82203ea1a9596b625ed6b to your computer and use it in GitHub Desktop.
const namesOfSelectedUsers = users => selectedUserIds => {
return selectedUserIds
.map(userIdString => parseInt(userIdString))
.map(userId => users[userId])
.map(user => user.name)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment