GithubHelp home page GithubHelp logo

bon_appetit_js's Introduction

OOJS Starter Kit

Let's get object-oriented in JavaScript-land!

Setup

  • Clone and cd into this repo.
  • npm install
  • npm test
    • You should see 7 passing tests.

Your Job

Complete this challenge from the Mod1 final assessment, but this time using JavaScript!

T. D. D.

Iteration 1: Pantry Stocking

Build a simple Pantry-tracking program that can store a list of ingredients and available quantities. Once we have tracked our ingredients and quantities, we'll use the Recipe class we built before to have the pantry prepare a shopping list for us.

Support the following interactions:

const pantry = new Pantry()
// => Pantry {...}

// Checking and adding stock
pantry.stock
// => {}

pantry.stockCheck("Cheese")
// => 0

pantry.restock("Cheese", 10)

pantry.stock
// => { "Cheese": 10 }

pantry.stockCheck("Cheese")
// => 10

pantry.restock("Cheese", 20)
pantry.stockCheck("Cheese")
// => 30

Iteration 2: Shopping List

Add a feature to your pantry to generate a shopping list for a collection of recipes.

We'll follow this interaction pattern:

const pantry = new Pantry()
// => Pantry {...}

// Building our recipe
const r = new Recipe("Cheese Pizza")
// => Recipe {...}

r.ingredients
// => {}

r.addIngredient("Cheese", 20)
r.addIngredient("Flour", 20)

r.ingredients
// => {"Cheese": 20, "Flour": 20}

// Adding the recipe to the shopping list
pantry.addToShoppingList(r)

// Checking the shopping list
pantry.shoppingList // => { "Cheese": 20, "Flour": 20 }

// Adding another recipe
const r = new Recipe("Spaghetti")
r.addIngredient("Noodles", 10)
r.addIngredient("Sauce", 10)
r.addIngredient("Cheese", 5)
pantry.addToShoppingList(r)

// Checking the shopping list
pantry.shoppingList // => {"Cheese": 25, "Flour": 20, "Noodles": 10, "Sauce": 10}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.