Advertisement
Guest User

Untitled

a guest
Feb 18th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. if (balance < 0)
  2.   {
  3.     balance = balance - 1;
  4.     console.log("Balance: " + balance)
  5.     var result = balance * interestRate / minPayment;
  6.     console.log(result)
  7.     var newBalance = balance - result;
  8.     console.log(newBalance);
  9.   }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement