Skip to content

Instantly share code, notes, and snippets.

@ruprict
Created June 17, 2012 12:38
Show Gist options
  • Select an option

  • Save ruprict/2944440 to your computer and use it in GitHub Desktop.

Select an option

Save ruprict/2944440 to your computer and use it in GitHub Desktop.
var calculateTotalPrice, subtotal, tax;
calculateTotalPrice = function(arg1, arg2) {};
subtotal = arg1 + arg2;
tax = subtotal * 0.085;
subtotal + tax;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment