Hi,
I would like to combine multiple different arrays into one. I have for example the following two arrays:
["123","456","789","987"]
["John","Patrick","Simon","Bill"]
I would like to have the following:
[
{
"no":"123",
"name":"John"
},
{
"no":"456",
"name":"Patrick"
},
{
"no":"789",
"name":"Simon"
},
{
"no":"987",
"name":"Bill"
}
]
Thanks!