I am getting JSON in this format
[
{
"toppings": [
"Honey with Chocolate Sauce 10 ML",
"Honey with Carmel 10 ML"
]
}
]
Could anybody please tell me how can i get the elements present under the toppings ??
I have tried to parse this way , but giving me undefined .
for(var k=0;k<toppingres[0].length;k++)
{
}