Created
December 7, 2016 02:16
-
-
Save pboethig/fd4baf4edd3e6841b1bf95f399d1d001 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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