Hi I have a ajax request which returns this
[[{"totalloginhours":"11.17"}],[{"totalagents":"2"}],[{"totalapplications":"2"}]]
How do I access this string in jQuery? I don't need to loop.
I tried using $.parseJSON to parse that string
var myObj2 = $.parseJSON(result2);
which returns

myObj2[0].totalloginhours?myObj2[0][0]['totalloginhours']