JSFiddle - React, Tailwind, and code Playground
by Ehsan Sajjad
JavaScript
var data=[
{
"toppings": [
"Honey with Chocolate Sauce 10 ML",
"Honey with Carmel 10 ML"
]
}
];
$.each(data,function(index,item){
$.each(item,function(index1,item1){
console.log(item1);
});
})