Skip to content

Instantly share code, notes, and snippets.

@LearningMaterial
Created March 12, 2018 13:49
Show Gist options
  • Save LearningMaterial/2850cb6d2daad16472ecdfd96b7f7332 to your computer and use it in GitHub Desktop.
Save LearningMaterial/2850cb6d2daad16472ecdfd96b7f7332 to your computer and use it in GitHub Desktop.
function calculateBill(total, tax = 0.13, tip = 0.15) {
return total + total * tax + total * tip;
}
const result = calculateBill(100);
console.log(result);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment