Is there a way for me to extract the "Toppings" values from my JSON string and display them as list items? I appreciate any assistance you can provide!
<html>
<body>
<section>
<h2>Toppings</h2>
<ul>
<li>JSON String Value </li>
<li>JSON String Value </li>
<li>JSON String Value </li>
<li>JSON String Value</li>
</ul>
</section>
</body>
<script>
var myObj ={"menu": {"slice of pizza": "2.00", "toppings": {"pepperoni": ".25","meatballs": ".35", "mushrooms": ".40","olives": ".20"},"sides": {"potato salad": "1.25","hummus": "2.50","caesar salad": "3.50","garden salad": "2.25"}, "drinks": { "soda": { "small": "1.95", "medium": "2.20","large": "2.50" }, "juice": "2.00", "water": "1.25"}}};
var myJSON = JSON.stringify(myObj);
</script>
</html>