I want to convert 3d array to 2d array
so I have 3d array look like this
[
[
["creative fee (example)"],
[1000]
],
[
["Item 1...", "Item 2..."],
[600, 1000]
],
[
["Item 3...", "Item 4..."],
[400, 600]
]
]
and want to convert to 2d array like this (expected result)
[
["creative fee (example)", 1000],
["Item 1...", 600],
["Item 2...", 1000],
["Item 3...", 400],
["Item 4...", 600]
]
this is what I've tried but it begins too hard
var carry = [
[
["creative fee (example)"],
[1000]
],
[
["Item 1...", "Item 2..."],
[600, 1000]
],
[
["Item 3...", "Item 4..."],
[400, 600]
]
],
result = []
for (var z = 0; z < carry.length; z++) {
for (var m = 0; m < carry[z].length; m++) {
for (var t = 0; t < carry[z][m].length; t++) {
// console.log(carry[z][m][t])
result[z+t] = []
result[z+t][m] = carry[z][m][t]
}
}
}
console.log(result)
Anyways thank you in advance