Skip to content

Instantly share code, notes, and snippets.

@schalkneethling
Created July 7, 2021 18:49
Show Gist options
  • Save schalkneethling/b84d3fb9d8e4a1c28fe5d9d7dc6c6a82 to your computer and use it in GitHub Desktop.
Save schalkneethling/b84d3fb9d8e4a1c28fe5d9d7dc6c6a82 to your computer and use it in GitHub Desktop.
function calculateMealPrice(mealCost, tipPercent, taxPercent) {
const tipAmount = (tipPercent / 100) * mealCost;
const taxAmount = (taxPercent / 100) * mealCost;
return Number.parseInt(Math.round(mealCost + tipAmount + taxAmount), 10);
}
calculateMealPrice(12.00, 20, 8);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment