删除数组的子数组并转换为对象?

Remove subarray of array and convert into objects?

我有一个数组数组,我必须将其转换为一个对象数组:

[
  [
    {
      lable: "text",
      anotherValue: "anothervalue"
    }
  ], 
  [
    {
      lable: "text",
      anotherValue: "anothervalue"
    }
  ]
]

我需要将其转换为:

[
  {
    lable: "text",
    anotherValue: "another value"
  }, 
  {
    lable: "text",
    anotherValue: "another value"
  }
]

您可以使用地图来做到这一点。作为参数提供给 map 的函数解包每个子数组并用其中的对象替换它。

a = [
  [{lable:'text',anotherValue:'anothervalue'}], 
  [{lable:'text',anotherValue:'anothervalue'}]
];

result = a.map((o) => o[0])