首页 > 解决方案 > 一个值在对象数组中重复多少次

问题描述

嗨所以我有这个对象数组:

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 employees = [
    {position: "Front-End", count: 3},
    {position: "Back-End", count: 2},
    {position: "Full-Stack", count: 1},
]

这怎么可能与该结果或最相似的结果有关?

标签: javascriptarraysreactjsobject

解决方案


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);


推荐阅读