JSFiddle - React, Tailwind, and code Playground
by chridam
JavaScript
var json = [
{
"name": "Regular, 50 Ml",
"image": "http://hostip:8080/OrderSnacks/JSON_images/icecream_cup_vanilla.jpg",
"quantity": "2",
"price": "150",
"toppings": [
{
"name": "Regular, 50 Ml0",
"value": [
"Honey with Chocolate Sauce 10 ML"
]
},
{
"name": "Regular, 50 Ml1",
"value": [
"Honey with Chocolate Sauce 10 ML",
"Honey with Carmel 10 ML"
]
}
]
}
];
$.each(json.toppings, function(i, object) {
$.each(object, function(property, value) {
console.log(property + "=" + value);
});
});