Skip to content

Instantly share code, notes, and snippets.

@jbmilgrom
Last active March 7, 2020 21:25
Show Gist options
  • Save jbmilgrom/afd14da5882601cab6509fbaed7ccca4 to your computer and use it in GitHub Desktop.
Save jbmilgrom/afd14da5882601cab6509fbaed7ccca4 to your computer and use it in GitHub Desktop.
Subsequent calls to withdraw with the same argument produce different results
const bankAccount = makeBankAccount(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