I have this variable:
var txt = {
'e3fe40': {
'name' : 'Menu2',
'data': {
'prompt_say' : 'Thank you for calling ',
'keys[]' : ['1','2'],
'choices[]' : [
'start/e3fe40/d2d27',
'start/e3fe40/77c197'
]...
While I can parse with no problems things such as txt[position].data.... , I cannot seem to be able to parse these two:
txt[position].data.keysandtxt[position].data.choices(last two entries from code above)
I tried with
txt[position].data.keys[1],
txt[position].data.keys[],
txt[position].data.keys
etc.
None worked. I always get "undefined" value.
Any ideas?