Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save maurobringolf/1f2b960efeb5ea367b93f3ecd282de45 to your computer and use it in GitHub Desktop.
Save maurobringolf/1f2b960efeb5ea367b93f3ecd282de45 to your computer and use it in GitHub Desktop.
class myComponent extends React.Component {
constructor() {
super()
// Replace existing method with hardbound version of it
this.someMethod = someMethod.bind(this)
}
someMethod() {
// Do something that relies on 'this'
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment