Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

40,030 questions

51,990 answers

573 users

How to use reduce to group array items in JavaScript

1 Answer

0 votes
const workers = [
    { name: 'R2D2', lang: 'cpp' },
    { name: 'Emma', lang: 'c' },
    { name: 'Arthur', lang: 'cpp' },
];

const groupeditems  = workers.reduce((acc, person) => {
    (acc[person.lang] = acc[person.lang] || []).push(person);
    return acc;
}, {});

console.log(groupeditems);



/*
run:

{
  cpp: [ { name: 'R2D2', lang: 'cpp' }, { name: 'Arthur', lang: 'cpp' } ],
  c: [ { name: 'Emma', lang: 'c' } ]
}

*/

 



answered Nov 1, 2024 by avibootz
...