I have the following JSON data:
[
{
"Title": "PAGE A",
"Users": "USRA"
},
{
"Title": "PAGE B",
"Users": "USRA,USRB"
}
]
What would be the best way to convert the fields with "," in to arrays? and get using javascript:
[
{
"Title": "PAGE A",
"Users": "USRA"
},
{
"Title": "PAGE B",
"Users": ["USRA","USRB"]
}
]