Skip to content

Instantly share code, notes, and snippets.

@oliverjam
Created August 3, 2017 16:34
Show Gist options
  • Save oliverjam/935b9c11c49d1f00bf4797ec6df15531 to your computer and use it in GitHub Desktop.
Save oliverjam/935b9c11c49d1f00bf4797ec6df15531 to your computer and use it in GitHub Desktop.
Functional Fun - Cool Currying created by oliverjam - https://repl.it/Jvni/0
const get = prop => object => object[prop];
const objects = [
{ id: 1 },
{ id: 2 },
{ id: 3 },
];
objects.map(get('id'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment