, - . Windows JSON.parse(string) eval (string) , json, , - .
var json = (eval("[" + eval(json string) + "]"))[0]; //magic but works (btw creates json array as required in the question, all that required is to remove [0] in the end).
:
function syncRequest(_url, _data) {
var req = new XMLHttpRequest();
req.open("POST", _url, false);
req.setRequestHeader("Content-type", "application/json");
req.send(_data);
return req.responseText;
}
var response = syncRequest("http://...", "{json data}");
var json = (eval("[" + eval(response) + "]"))[0];