/pizzaParlor_app

This app will let you select pizza size, toppings, and display final order with amount due.

Primary LanguageHTML

Pizza Parlor App

The application will let user select a pizza of certain size with toppings of preference

By Roman Kolivashko

Technologies Used

  • HTML
  • CSS
  • JavaScript
  • JQuery

Description

This is an applicaton that helps user choose one or more individual toppings (cheese, pepperoni, artichoke, anchovy, etc) and a size to order a pizza and see the final cost.

Specifications

Describe: pizzaOrder()

Case #1
Test: Create a pizza order object constructor
Code: let order = new Pizza("medium", "beef");
Expected Output: Pizza { size: "medium", toppings: 'beef' }
Case #2
Test: Create prototype method to select size
Code: order.selectSize("medium")
Expected Output: 12
Case #3
Test: Create prototype method to add toppings
Code: if (toppings > 3)
Expected Output: this.price += 10;
Case #4
Test: Create prototype method to add sales tax
Code: (order.selectSize("medium") + order.addToppings(4)) + 10% tax
Expected Output: 33

Setup/Installation Requirements

  • Run git clone https://github.com/romankolivashko/pizzaParlor_app.git
  • Open index.html file in browser.

How to access the app from the web

  • Follow the link here

Known Bugs

  • NO bugs have been reported yet

License

The MIT License (MIT)

Copyright (c) 2021 Roman Kolivashko

Contact Information

rkolivashko@gmail.com