Reputation: 11
I am trying to merge two JSON data .
example :
json 1 :
{
"countryCode":"AD",
"countryName":"Andorra",
"currencyCode":"EUR"
},
{
"countryCode":"AE",
"countryName":"United Arab Emirates",
"currencyCode":"AED"
}
json 2 :
{
"code":"AED",
"name":"Arab Emirates Dirham",
"locale":"ar_AE",
"display":1
},
{
"code":"AFN",
"name":"Afghanistan Afghani",
"locale":"ps_AF",
"display":1
}
I want to merge this two json object based on the data .
Upvotes: 1
Views: 45