Advertisement
Guest User

Untitled

a guest
Nov 22nd, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. function CalculateProfit(input) {
  2. switch(input) {
  3. case 15.99:
  4. return 3.79;
  5. case 17.99:
  6. return 5.49;
  7. default:
  8. return input;
  9. }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement