Skip to content

Instantly share code, notes, and snippets.

@bltavares
Created April 13, 2016 17:04
Show Gist options
  • Save bltavares/7fd5da417fe4f2edd2c075929de37159 to your computer and use it in GitHub Desktop.
Save bltavares/7fd5da417fe4f2edd2c075929de37159 to your computer and use it in GitHub Desktop.
class Example {
doSomething() {
this.a = 1;
}
}
const Example = () => { };
Example.prototype.doSomething = () => {
this.a = 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment