1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
| const groupBy = (obj, key) => { const values = obj instanceof Map || obj instanceof Set ? Array.from(obj.values()) : Object.values(obj);
return values.reduce((acc, value) => { const groupKey = value[key]; if (!Array.isArray(acc[groupKey])) { acc[groupKey] = [value]; } else { acc[groupKey].push(value); } return acc; }, {}); };
const arrayRoles = [ { title: "Mieruko-chan", category: "xxx" }, { title: "Vladilena Mirizé", category: "xxx" }, { title: "Nakano Azusa", category: "xxx" }, { title: "Shirahane Suou", category: "yyy" }, { title: "Mio Akiyama", category: "yyy" }, ]; console.log(groupBy(arrayRoles, "category"));
|