Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Build a Node.js module that is designed to track inventory for a store. Build A Node.js module called inventory.js that exposes the following functionality: addItem

Build a Node.js module that is designed to track inventory for a store.

Build A Node.js module called inventory.js that exposes the following functionality:

addItem - A function that takes 2 parameters: an items name and price and tracks it internally.

items - A function that returns a list of items, sorted by price from least expensive to most expensive.

getMostExpensive - Returns an object that contains the items name and price for the most expensive item that has been added.

getLeastExpensive - Returns an object that contains the items name and price for the most least expensive item that has been added.

removeItem - Remove an item by name.

getItemByName - Returns an items name and price by name.

getItemByPrice - Returns an items name and price by price.

Your module should not expose any functions or variables that would allow the above functions to have the integrity of their data compromised.

NOTES:

* Cannot use any third party JavaScript libraries

* Must use JavaScripts strict mode

* Must use let instead of var

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Basics Computer EngineeringInformation Warehouse Basics From Science

Authors: Odiljon Jakbarov ,Anvarkhan Majidov

1st Edition

620675183X, 978-6206751830

More Books

Students also viewed these Databases questions

Question

2. Provide recommendations for effective on-the-job training.

Answered: 1 week ago