I have some JSON returned from a server:
{
"outer" : {
"inner" : "1"
},
"outer2" : {
"inner" : "1"
},
"outer3" : {
"inner" : "1"
},
}
I'd like to access ~something~.inner programmatically, and I have a variable with that data in it, but if I say variable.inner, it doesn't work (obviously). What's the correct syntax to do this?
Thanks!