javascriptarraysreactjsobject

how many times a value is repeated in an array of objects


Hi so I have this array of objects:

const employees = [
    {age: 35, name: "David" position: "Front-End"},
    {age: 24, name: "Patrick" position: "Back-End"},
    {age: 22, name: "Jonathan" position: "Front-End"},
    {age: 32, name: "Raphael" position: "Full-Stack"},
    {age: 44, name: "Cole" position: "Back-End"},
    {age: 28, name: "Michael" position: "Front-End"},
]

and I want to get a result like this:

const employees = [
    {position: "Front-End", count: 3},
    {position: "Back-End", count: 2},
    {position: "Full-Stack", count: 1},
]

how is that possible to do with that result or the most similar one?


Solution

  • const employees = [
      { age: 35, name: 'David', position: 'Front-End' },
      { age: 24, name: 'Patrick', position: 'Back-End' },
      { age: 22, name: 'Jonathan', position: 'Front-End' },
      { age: 32, name: 'Raphael', position: 'Full-Stack' },
      { age: 44, name: 'Cole', position: 'Back-End' },
      { age: 28, name: 'Michael', position: 'Front-End' }
    ];
    
    const obj = employees.reduce((val, cur) => {
      val[cur.position] = val[cur.position] ? val[cur.position] + 1 : 1;
      return val;
    }, {});
    
    const res = Object.keys(obj).map((key) => ({
      position: key,
      count: obj[key]
    }));
    
    console.log(res);