Skip to content

Instantly share code, notes, and snippets.

@boo1ean
Created October 28, 2016 15:46
Show Gist options
  • Save boo1ean/269c0a69191bacfe0d5ab1d9454c971d to your computer and use it in GitHub Desktop.
Save boo1ean/269c0a69191bacfe0d5ab1d9454c971d to your computer and use it in GitHub Desktop.
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