It’s best to guess your question:
How to change this JSON format:
[{ key : "Value", key2 : "Value2" }, { key : "Another Value", key2 : "Another Value2" }]
In this format:
var Keys = ["Value", "Another Value"];
var Key2s = ["Value2", "Another Value2"];
: . JSON - , . , JSON , " " , . . , JSON .
Update:
, , Javascript, . , , . , , , :
var html = '...' + key[index] + '...' +key2[index] + '...';
var html = '...' + data[index].key + '...' + data[index].key2 + '...';
, Javascript/JSON UTF8, . , UTF8 JSON.