Всем привет!
Есть массив строк
Let initialArr = ["first1", "second1", "thirth1", "first2", "second2", "thirth2",....]
Надо получить массив обьектов с полями:
Let result = [{
0: {
CustomName1: first1,
CustomName2: second1,
CustomName3: thirth1,
}
1: {
CustomName1: first2,
CustomName2: second2,
CustomName3: thirth2
}
...
}]