If doing console.log(data) from inside a function that get passed the result of an AJAX request outputs

in the google chrome developer tools, I am wondering how I can get to the value of result?
I think the entire response is being interpreted as a string? normally I would just use the dataType parameter, but I do not have control over this AJAX request.
If doing console.log(data) from inside a function that get passed the result of an
Share
data.responseproperty contains an object that is serialized to JSON, so you have to unserialize it in this way: