Skip to content

Instantly share code, notes, and snippets.

@jonvuri
Created April 16, 2018 19:19
Show Gist options
  • Save jonvuri/f1156ff1d4c5b0c785683b96f76b8af6 to your computer and use it in GitHub Desktop.
Save jonvuri/f1156ff1d4c5b0c785683b96f76b8af6 to your computer and use it in GitHub Desktop.
{ type: 'CHANGE_NUMBER', payload: 2 }
{ a: 1 } -> { a: 2 }
Object.assign({}, state, { a: 2 })
{ ...state, { a: 2 }}
set(lensProp('a'), 2)(state)
assign('a', 2, state)
merge( state, { a: 2, b: 4 } )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment