Skip to content

Instantly share code, notes, and snippets.

@robertoandres24
Created February 8, 2019 18:33
Show Gist options
  • Save robertoandres24/61c2e46fff83be5fcda594fde54b56cf to your computer and use it in GitHub Desktop.
Save robertoandres24/61c2e46fff83be5fcda594fde54b56cf to your computer and use it in GitHub Desktop.
var groupBy = function(xs, key) {
return xs.reduce(function(rv, x) {
(rv[x[key]] = rv[x[key]] || []).push(x);
return rv;
}, {});
};
console.log(groupBy(['one', 'two', 'three'], 'length'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment