Skip to content

Instantly share code, notes, and snippets.

Created October 15, 2013 04:19
Show Gist options
  • Save anonymous/6986422 to your computer and use it in GitHub Desktop.
Save anonymous/6986422 to your computer and use it in GitHub Desktop.
commission = Math.min(salesAmount,1000) * 0.03;
if (salesAmount > 1000) {
commission += (Math.min(salesAmount,2000) – 1000 ) * 0.05;
}
if (salesAmount > 2000) {
commission += (salesAmount – 2000 ) * 0.07;
}
return commission;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment