I have the following JSON . I am reading the T3 array .
My question is that is it possible to read the values Can and Bottle
var jsondata = {
"T3": [
{
"Can": [
{
"type": "pepsi can 250ml"
},
{
"type": "pepsi can 100ml"
}
]
},
{
"Bottle": [
{
"type": "pepsi bottle 250ml"
},
{
"type": "pepsi bottle 100ml"
}
]
}
]
};
I agree that at my knowledge , i can't proceed further from this level ??
for(var c=0;c<jsondata.T3.length;c++)
{
}
But still i want to ask whether this can be done or not ??