Ok so let\'s say that I have my object
myobj = {\"A\":[\"Abe\"], \"B\":[\"Bob\"]}
and I want to get the first element out of it. As in I want i
I know it's a late answer, but I think this is what OP asked for.
myobj[Object.keys(myobj)[0]];