Skip to content

Instantly share code, notes, and snippets.

@LearningMaterial
Created March 11, 2018 22:08
Show Gist options
  • Save LearningMaterial/5d92b04d0d30f12191c9f8949599d3f9 to your computer and use it in GitHub Desktop.
Save LearningMaterial/5d92b04d0d30f12191c9f8949599d3f9 to your computer and use it in GitHub Desktop.
function calculateMyBill(total, tax, tip) {
return total + total * tax + total * tip;
}
var result = calculateMyBill(100);
console.log(result);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment