Skip to content

Instantly share code, notes, and snippets.

@pboethig
Created December 7, 2016 02:16
Show Gist options
  • Save pboethig/fd4baf4edd3e6841b1bf95f399d1d001 to your computer and use it in GitHub Desktop.
Save pboethig/fd4baf4edd3e6841b1bf95f399d1d001 to your computer and use it in GitHub Desktop.
class Test {
constructor(x, y) {
this.x = x;
this.y = y;
}
sum(a, b) {
return a+b;
}
}
export default Test;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment