i have an array like this coming back response from the server:
[
"111",
"1010",
"111",
"1010",
"1010"
]
i want to convert it into a JavaScript JSON like this:
[
{
"branch": "111"
},
{
"branch": "1010"
},
{
"branch": "111"
},
{
"branch": "1010"
},
{
"branch": "1010"
}
]