What I mean by that is say I have JSON data as such:
[{\"ADAM\":{\"TEST\":1}, \"BOBBY\":{\"TEST\":2}}]
and I want to do something like this
That won't work as you're setting x to be a string object, no accessing the value from your array:
x
alert(data[0]["ADAM"].TEST);