Skip to content

Instantly share code, notes, and snippets.

@dleitee
Created March 14, 2017 03:17
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 dleitee/dc117941aa5909dcddf04e2a6936674f to your computer and use it in GitHub Desktop.
Save dleitee/dc117941aa5909dcddf04e2a6936674f to your computer and use it in GitHub Desktop.
// Example using Objects.assign
const deposit = (account, value) => Object.assign({}, account, {
balance: account.balance + value
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment