Skip to content

Instantly share code, notes, and snippets.

@dsibinski
Created April 18, 2021 07:36
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 dsibinski/af6191d34a2a5276a4756f83a5d6cae8 to your computer and use it in GitHub Desktop.
Save dsibinski/af6191d34a2a5276a4756f83a5d6cae8 to your computer and use it in GitHub Desktop.
if (allProductsQuantity > 10 && allProductsQuantity <= 50) {
discountValue += 10;
} else if (allProductsQuantity > 50) {
discountValue += 15;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment