so I have this Object, which when I console.log it and look at it in the inspector looks just fine. Object in Inspector
But when I print out the keys of the object, I only get this as a result: Object Keys in Inspector
And everything I print out after that (object.value) looks something like this:
ƒ (){return f&&(c&&!b&&(h=f.length-1,g.push(c)),function d(b){r.each(b,function(b,c){r.isFunction(c)?a.unique&&j.has(c)||f.push(c):c&&c.length&&"string"!==r.type(c)&&d(c)})}(arguments),c&&!b&&i()),this}
How can I access just the "responseJSON" from the first screenshot?
Some Background information that might be important: I got the object from the spotify web-api, authorization etc. works all just fine.
function getUserData(accessToken) {
return $.ajax({
url: 'https://api.spotify.com/v1/me/player/currently-playing',
headers: {
'Authorization': 'Bearer ' + accessToken
}
});
}