Guest User

Untitled

a guest
May 26th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. function calculate_savings(cost, sale) {
  2. cost *= 100;
  3. sale *= 100;
  4.  
  5. return ((cost - sale) / 100).toFixed(2);
  6. }
Add Comment
Please, Sign In to add comment