gpt4 book ai didi

javascript - ES6,返回一个对象数组以逗号分隔的字符串列表

转载 作者:行者123 更新时间:2023-11-30 09:14:47 24 4
gpt4 key购买 nike

我有一些东西

var officers = [
{ id: 20, name: 'Captain Piett' },
{ id: 24, name: 'General Veers' },
{ id: 56, name: 'Admiral Ozzel' },
{ id: 88, name: 'Commander Jerjerrod' }
];

我需要返回 "20","24","56","88"

现在我在用

const ids = officers.map(officer => officer.id);

但它当然会返回一个数组。

什么是最有效的方法?

最佳答案

您可以使用 map()使用 "" 返回字符串数组,然后使用 join()

var officers = [
{ id: 20, name: 'Captain Piett' },
{ id: 24, name: 'General Veers' },
{ id: 56, name: 'Admiral Ozzel' },
{ id: 88, name: 'Commander Jerjerrod' }
];

const res = officers.map(x => `"${x.id}"`).join()

console.log(res)

关于javascript - ES6,返回一个对象数组以逗号分隔的字符串列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55848412/

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