/pizza-parlor

constructors and prototype

Primary LanguageHTML

Pizza Parlor

By Anahi Ruiz Robles

Project for pizza parlor choose your own toppings and size.

Technologies Used

  • HTML
  • CSS
  • JS

Description

This webpage contains project for pizza parlor, a website for a pizza company where a user can choose one or more individual toppings, a size to order a pizza, and see the final cost.

Setup/Installation Requirements

  • Clone this repository to your desktop.
  • Navigate to the top level of the directory.
  • Open index.html in your browser.

Known Bugs

  • No known bugs

License

MIT

Copyright (c) 11/04/2022 Anahi Ruiz Robles

Describe: construtor Order()
Test:should make pizzas into empty object
Code: 
 function Order() { this.pizzas = {}}
Expected Output: this.pizzas is now empty object

Describe: Order()
Test: Should create an new blank order
Code:let order = new Order();
Expected Output:order {}