Folks, Im getting back the following JSON object, which I would like to parse:
{"Count":1,"Items":[{"foo":{"S":"bar"}}]}
If I do the following, I get the 'bar' of the foo item?:
foo = JSON.stringify(result.Items)
foo = JSON.parse(foo)
console.log(foo)
fails if i try:
console.log(foo.bar)
Thanks!