gpt4 book ai didi

javascript - [{a : 1}], [{b : 2}] Converted to {a:1, b:2}

转载 作者:行者123 更新时间:2023-12-02 22:07:25 34 4
gpt4 key购买 nike

const a = [
{a: 1},
{b: 2},
{c: 3}
]

有什么快速的方法可以让它变得

{a:1、b:2、c:3}

实际场景中,不仅是3个Object,甚至是上百个Object

最佳答案

您可以使用Object.assignspread syntax .

let res = Object.assign({}, ...a)

关于javascript - [{a : 1}], [{b : 2}] Converted to {a:1, b:2},我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59675686/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com