Skip to content

Instantly share code, notes, and snippets.

@vasylpb
Last active August 15, 2020 15:56
Show Gist options
  • Save vasylpb/f04187e992067b87f65d2ea4bdfff1e5 to your computer and use it in GitHub Desktop.
Save vasylpb/f04187e992067b87f65d2ea4bdfff1e5 to your computer and use it in GitHub Desktop.
var groupBy = function(array, key) {
return array.reduce(function(acc, cur) {
(acc[cur[key]] = acc[cur[key]] || []).push(cur);
return acc;
}, {});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment