Created
April 16, 2017 22:55
-
-
Save dashmug/e6e0a8a6b2267f15077645f4413b48c6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class InventoryObject { | |
/** | |
* @param {string} name | |
* @param {number} price | |
*/ | |
constructor(name, price) { | |
this.name = name; | |
this.price = price; | |
} | |
/** | |
* Return a discounted price without altering the object. | |
* @param {number} percent | |
* @returns {number} | |
*/ | |
getDiscountedPrice(percent) { | |
// We work with cents in order to avoid float division | |
const priceInCents = this.price * 100 | |
return Math.round(priceInCents * (100 - percent)/100) / 100 | |
} | |
} | |
const Inventory = { | |
'000001': new InventoryObject('Banana Slicer', 2.99), | |
'000002': new InventoryObject('Three Wolves Tea Cozy', 14.95) | |
} | |
// Retrieve the price | |
console.log(Inventory['000001'].price) // 2.69 | |
// Retrieve a discounted price (e.g. ten percent off) | |
console.log(Inventory['000001'].getDiscountedPrice(10)) // 2.69 | |
// Create a new inventory object from a discounted price | |
Inventory['000003'] = new InventoryObject('Bargain Banana Slicer', Inventory['000001'].getDiscountedPrice(10)) | |
console.log(Inventory['000003']) // InventoryObject { name: 'Bargain Banana Slicer', price: 2.69 } | |
// Reduce the price of Banana Slicer by 10% | |
Inventory['000001'].price = Inventory['000001'].getDiscountedPrice(10) | |
console.log(Inventory['000001']) // InventoryObject { name: 'Banana Slicer', price: 2.69 } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment