I'm working with a JSON Array that looks like this:
[
{"Name" : "Arrow",
"Year" : "2001"
},
{"Name" : "Arrow",
"Type" : "Action-Drama"
},
{ "Name" : "GOT",
"Type" : "Action-Drama"
}
]
and I want to convert it to look like this:
[
{
"Name" : "Arrow",
"Year" : "2001",
"Type" : "Action-Drama",
},
{
"Name" : "GOT",
"Type" : "Action-Drama"
}
]
If anyone can help me with this, I would greatly appreciate it.
Thanks in advance.