непойму почему переменной test присвайвется значение undefined до того как функция вернет значение?
var test = editComment(commentId, textarea.value);
function editComment(id, comment) {
var xhr = getXmlHttp();
xhr.open("POST", "/main.php");
xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
xhr.onreadystatechange = function () {
if (xhr.readyState == 4 && xhr.status == 200) {
return JSON.parse(xhr.responseText);
}
}
xhr.send("actions=_ajax_edit_comment&comment="+comment+"&comment_id="+id);
}