Created
December 8, 2018 10:31
-
-
Save edgabaldi/6979955d99f0555f3c2cb2fcbb09ec53 to your computer and use it in GitHub Desktop.
groupBy ES6
This file contains 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 groupBy = (xs, key) => { | |
return xs.reduce( (rv, x) => { | |
(rv[x[key]] = rv[x[key]] || []).push(x); | |
return rv; | |
}, {}); | |
}; | |
console.log(groupBy(['one', 'two', 'three'], 'length')); | |
// => {3: ["one", "two"], 5: ["three"]} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment