Skip to content

Instantly share code, notes, and snippets.

@perjansson
Last active December 1, 2017 08:40
Show Gist options
  • Save perjansson/88df6fada858dd5aa2f4df34e3d4adf3 to your computer and use it in GitHub Desktop.
Save perjansson/88df6fada858dd5aa2f4df34e3d4adf3 to your computer and use it in GitHub Desktop.
onClick={function(e) {
this.setSelectedCar(e.target.value)
}.bind(this)}
// becomes
onClick={e => this.setSelectedCar(e.target.value)}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment