Skip to content

Instantly share code, notes, and snippets.

@gdyrrahitis
Created July 13, 2018 20:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gdyrrahitis/45cba994a4d8adab511cfec6fc5768ff to your computer and use it in GitHub Desktop.
Save gdyrrahitis/45cba994a4d8adab511cfec6fc5768ff to your computer and use it in GitHub Desktop.
function Calculator() {
function add(x, y) {
return x + y;
}
function subtract(x, y) {
return x - y;
}
return {
add: add,
subtract: subtract
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment