Я пытаюсь получить данные с помощью HTTP-запроса и функции обратного вызова, но получаю значение undefined, когда пытаюсь распечатать переменную.
function httpGetAsync(theUrl, callback)
{
var xmlHttp = new XMLHttpRequest();
xmlHttp.onreadystatechange = function() {
if (xmlHttp.readyState == 4 && xmlHttp.status == 200)
callback(xmlHttp.responseText);
}
xmlHttp.open("GET", theUrl, true);
xmlHttp.send(null);
}
var response;
httpGetAsync("https://localhost:44319/api/Food/Get",function(result){
response = result;
})
console.log(response)