Skip to content

Instantly share code, notes, and snippets.

@behnamazimi
Last active March 4, 2019 06:07
Show Gist options
  • Save behnamazimi/0b15abf9cfa5bcc9bbb7f8469d94ce1a to your computer and use it in GitHub Desktop.
Save behnamazimi/0b15abf9cfa5bcc9bbb7f8469d94ce1a to your computer and use it in GitHub Desktop.
Immutability Helpers Clean Code
// Dirty Code
const { Obj2 } = this.state
Obj2.value = "new value"
this.setState({
Obj2
})
// Clean Code
this.setState(update(this.state, {
Obj2: { value: { $set: "new value" }}
}))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment