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[0].toppings,function(index,item){
    console.log(item);
    $.each(item,function(index1,item1){

    });
})