gpt4 book ai didi

javascript - 将项目推送到数组深度中的同一个嵌套子项

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:29:10 24 4
gpt4 key购买 nike

我无法弄清楚如何将项目推送到同一个嵌套数组,例如:

var arr = ['foo', 'bar', 'buz', 'hello'];
// It should be now look like this:
const output = {name: 'foo', children: [
{name: 'bar', children: [
{name: 'buz', children: [
{name: 'hello', children: []}
]}
]}
]};

最佳答案

使用reduce:

const arr = ['foo', 'bar', 'buz', 'hello'];

const result = arr.reverse().reduce((acc, val) => ({name: val, children: [acc]}), {});

console.log(result);

关于javascript - 将项目推送到数组深度中的同一个嵌套子项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48455350/

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