I am using lodash 3.10 and i need to unite 2 arrays.
[
{
"name": "DESIGEMPRESA",
"value": "CMIP"
},
{
"name": "DSP_DIRECAO",
"value": "CMIP@400@1900-01-01"
},
{
"name": "MES",
"value": "12"
}
]
and this one that are prety much the same :
[
{
"name": "DESIGEMPRESA",
"value": "CMIP"
},
{
name: "CUSTO",
value: ">100"
}
]
I know theres is a simple way to do it as merge doesnt work in this cas. Apreciate your help Thanks.