Skip to content

Instantly share code, notes, and snippets.

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