gpt4 book ai didi

javascript - 映射数组,结果字符串以回车符分隔

转载 作者:行者123 更新时间:2023-12-03 05:21:16 24 4
gpt4 key购买 nike

如何从由回车符分隔的嵌套数组中返回字符串?

var store = [
[ 'deli', 'over roasted turkey', 10.50 ],
[ 'bakery', 'sliced sourdough', 8.00 ],
]

我已经尝试过了。我确信我需要使用 join 但似乎无法找出正确的位置。

function list(store) {
return store.map(function(item) {
return item.toString();
})}

console.log(list(store))

结果应该是这样的

  'deli, over roasted turkey, 10.50',// separated by carriage return  \n
'bakery, sliced sourdough, 8.00'

最佳答案

list 函数的主体更改为:

return store.map((item) => {
return item.toString();
}).join('\n');

关于javascript - 映射数组,结果字符串以回车符分隔,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41370459/

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