Skip to content

Instantly share code, notes, and snippets.

@jbmilgrom
Last active October 6, 2019 13:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jbmilgrom/f1a9aae52926944554353238eabc6d81 to your computer and use it in GitHub Desktop.
Save jbmilgrom/f1a9aae52926944554353238eabc6d81 to your computer and use it in GitHub Desktop.
Subsequent calls to withdraw with the same argument produce different results
const bankAccount = new BankAccount(100);
bankAccount.checkBalance(); // 100
bankAccount.withdraw(20);
bankAccount.checkBalance(); // 80
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment