I have this json
var response=[{"ts":"2017-01-01T00:00:00+01:00","v":428},{"ts":"2017-01-02T00:00:00+01:00","v":920}]
and I need to pass it to:
["2017-01-01T00:00:00+01:00,428","2017-01-02T00:00:00+01:00,920"]
better said take it out of json for an array.
Could you help me please