gpt4 book ai didi

javascript - 从字典数组 JavaScript 中获取键的值

转载 作者:行者123 更新时间:2023-12-04 16:29:39 24 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





From an array of objects, extract value of a property as array

(24 个回答)


3年前关闭。




所以在Javascript中我有一个结构如下的数组:

car = [{id: "1", brand: "Opel"}, {id: "2", brand: "Haima"},{id: "3", brand: "Toyota"}]

我怎样才能获得所有品牌的值(value)。

最佳答案

这应该有助于:

const car = [{id: "1", brand: "Opel"}, {id: "2", brand: "Haima"},{id: "3", brand: "Toyota"}];

const brands = car.map(({ brand }) => brand);

关于javascript - 从字典数组 JavaScript 中获取键的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52544345/

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