Skip to content

Instantly share code, notes, and snippets.

@jbmilgrom
Last active March 7, 2020 21:23
Show Gist options
  • Save jbmilgrom/354ddff95f72f5ad1d51cc6e00927eb9 to your computer and use it in GitHub Desktop.
Save jbmilgrom/354ddff95f72f5ad1d51cc6e00927eb9 to your computer and use it in GitHub Desktop.
Show the use of arrow syntax in maintaining state
const makeBankAccount = balance => ({
withdraw: amount => balance = balance - amount,
checkBalance: () => balance
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment