Skip to content

Instantly share code, notes, and snippets.

@DominicGBauer
Created January 16, 2019 12:49
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 DominicGBauer/6655abbceb6070bac70c3a5ef839f52f to your computer and use it in GitHub Desktop.
Save DominicGBauer/6655abbceb6070bac70c3a5ef839f52f to your computer and use it in GitHub Desktop.
// Change this
grind() {
console.log(this.sweat);
};
// into this
grind = () => {
console.log(this.sweat);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment