I have an funtion that makes a get request to an server and the server respond to it and i need to check the status code but when i use the key of the responded dict i get the log that its undefined, but when i do this in the console i do get the status code.
function check_object(time_link_check){
var x = $.get(time_link_check);
//1
console.log(x)
//2
console.log(x.status)
}
Object {
readyState: 1,
getResponseHeader: getResponseHeader(e),
getAllResponseHeaders: getAllResponseHeaders(),
setRequestHeader: setRequestHeader(e, t),
overrideMimeType: overrideMimeType(e),
statusCode: statusCode(e),
abort: abort(e),
state: state(),
always: always(),
catch:
catch (e),
…
}
undefined