Created
August 3, 2017 16:34
-
-
Save oliverjam/935b9c11c49d1f00bf4797ec6df15531 to your computer and use it in GitHub Desktop.
Functional Fun - Cool Currying created by oliverjam - https://repl.it/Jvni/0
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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