My Array1
[
[
"Ramesh",
"Mukka",
"",
""
]
]
My Array2
[
[
"",
"",
"",
""
],
[
"",
"",
"",
""
]
]
The merged array should be
[
[
"Ramesh",
"Mukka",
"",
""
],
[
"",
"",
"",
""
],
[
"",
"",
"",
""
]
]
I am struggling with how to get it done efficiently. Can anyone help?
Regards,
Ramesh Mukka
The below expression has helped
json(concat('[', slice(string(outputs('Compose_Array1')), 1, -1), ',', slice(string(outputs('Compose_Array2')), 1, -1), ',', ']'))