const people = [
{ name: 'John', age: 28 },
{ name: 'Jane', age: 28 },
{ name: 'Joe', age: 32 }
];
const grouped = people.groupBy(person => person.age);
// { 28: [John, Jane], 32: [Joe] }
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)