I would like to know how could I merge an array of arrays. For example, I have the following array:
[ [ {marca: 'fiat', modelo: 'palio'} ], [ {marca: 'nissan', modelo: 'march'} ] ]
I'd like to get this array, after merging the array above:
[ {marca: 'fiat', modelo: 'palio'}, {marca: 'nissan', modelo: 'march'} ]
Thanks, guys, I appreciate it.