Skip to content
Advertisement

Array, array, and objects [closed]

I got this result in my variable

JavaScript

What I need is all in a single array, is that possible? Something like ARRAY (objects of array 1, and objects of array 2)

Advertisement

Answer

If this really just is about merging those entries into a single array, then the array_merge(...) function comes in handy…

If however you need some more control, maybe want to do some sanitizing on the fly, then just iterate over the entries:

JavaScript

The output obviously is:

JavaScript
User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement