@AskJs

Как создать новый массив объектов из старого?

Есть массив :
[
{test: 'as', test1: 'asss', test2:[{hello: 'a', hell: 'b'}, {hello: 'a', hell: 'b'}]},
{test: 'as', test1: 'asss', test2:[{hello: 'a', hell: 'b'}, {hello: 'a', hell: 'b'}]},
{test: 'as', test1: 'asss', test2:[{hello: 'a', hell: 'b'}, {hello: 'a', hell: 'b'}]}
]

Как из него сделать массив типа:
[
{test: 'as', children: [{hello: 'a'}]},
{test: 'as', children: [{hello: 'a'}]},
{test: 'as', children: [{hello: 'a'}]}
]
  • Вопрос задан
  • 256 просмотров
Решения вопроса 1
@vaajnur
битриксоид
var a = [
{test: 'as', test1: 'asss', test2:[{hello: 'a', hell: 'b'}, {hello: 'a', hell: 'b'}]},
{test: 'as', test1: 'asss', test2:[{hello: 'a', hell: 'b'}, {hello: 'a', hell: 'b'}]},
{test: 'as', test1: 'asss', test2:[{hello: 'a', hell: 'b'}, {hello: 'a', hell: 'b'}]}
]

var b = []
a.forEach(function(item){
	b.push({test: item.test, children: [ { hello: item.test2[0].hello } ] })

})

b
Ответ написан
Комментировать
Пригласить эксперта
Ваш ответ на вопрос

Войдите, чтобы написать ответ

Войти через центр авторизации
Похожие вопросы