Skip to content

Instantly share code, notes, and snippets.

@delineas
Last active September 13, 2019 11:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save delineas/71a0500559e4ba7a39775b2dfa4f8f48 to your computer and use it in GitHub Desktop.
Save delineas/71a0500559e4ba7a39775b2dfa4f8f48 to your computer and use it in GitHub Desktop.
Reto Refactorización WRP 36
class Product {
amount() {
let product_price = this.quantity * this.productPrice;
let discountRate = 1;
if(product_price > 1500) {
discountRate = 0.7;
}
else {
discountRate = 0.95;
}
return product_price * discountRate;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment