I have a json array. I need to bring this:
[
{"id": ["1"],
"title": ["hello"],
"start": ["2016-05-20"],
"end": ["2016-05-25"],
}
]
to this:
[
{"id": "1",
"title: "hello",
"start": "2016-05-20",
"end": "2016-05-25",
}
]
How to do that?