Created
October 28, 2016 15:46
-
-
Save boo1ean/269c0a69191bacfe0d5ab1d9454c971d to your computer and use it in GitHub Desktop.
This file contains 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 Math { | |
add(a, b) { | |
return a + b; | |
} | |
sub(a, b) { | |
return a - b; | |
} | |
} | |
module.exports = new Math(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment