如果至少有一个 属性 是常见的,则组合对象数组

combine array of object if atleast one property is common

//this one is actual array

 const data = [
        {
          name: 'shanu',
          label: 'ak',
          value: 1,
        },
        {
          name: 'shanu',
          label: 'pk',
          value: 2,
        },
        {
          name: 'bhanu',
          label: 'tk',
          value: 3,
        },
      ];
>

//and this  is the array that I want
let outPut =
[
{
name:'shanu',
label:['ak','pk'],
value:[1,2]
},
{
name:'bhanu',
label:['tk'],
value:[3]
}
]

您可以这样使用 Array.prototype.reduce()

const data = [
  {
    name: 'shanu',
    label: 'ak',
    value: 1,
  },
  {
    name: 'shanu',
    label: 'pk',
    value: 2,
  },
  {
    name: 'bhanu',
    label: 'tk',
    value: 3,
  },
];

const output = data.reduce((prev, curr) => {
  const tmp = prev.find((e) => e.name === curr.name)
  if (tmp) {
    tmp.label.push(curr.label)
    tmp.value.push(curr.value)
  } else {
    prev.push({
      name: curr.name,
      label: [curr.label],
      value: [curr.value],
    })
  }
  return prev
}, [])

console.log(output)