An App for ordering custom pizza's.
It will take in selected options and output a total cost underneath with order summary.
Technologies: HTML, CSS, and JavaScript.
This was accomplished via Loops, Classes, and Array's. It tallied up choices made and associated values into an Array,
for (var i = 0; i < sizeArray.length; i++) {
if (sizeArray[i].checked) {
var selectedSize = sizeArray[i].value; //Would grab checked items, value i.e. 'Medium Pizza'
text1 = text1 + selectedSize + "<br>";
}
}
and Outputed end result into a hidden 'cart' that appeared when Order button was clicked.

