Skip to content

Instantly share code, notes, and snippets.

@mklabs
Created October 13, 2010 13:03
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 mklabs/623991 to your computer and use it in GitHub Desktop.
Save mklabs/623991 to your computer and use it in GitHub Desktop.
// 10: a user enters their desired tip into a text box; the baseTotal, tax,
// and fee values are provided by the application. what are some potential
// issues with the following function for calculating the total?
function calculateTotal(baseTotal, tip, tax, fee) {
return baseTotal + tip + tax + fee;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment