Skip to content

Instantly share code, notes, and snippets.

@AnkurVyas-BTC
Created June 26, 2017 18:15
Show Gist options
  • Select an option

  • Save AnkurVyas-BTC/b4c3f024d054d0c8ac4c3f5cbc46bb49 to your computer and use it in GitHub Desktop.

Select an option

Save AnkurVyas-BTC/b4c3f024d054d0c8ac4c3f5cbc46bb49 to your computer and use it in GitHub Desktop.
Simple calculator js file for tests
function add(arg1, arg2) {
return arg1 + arg2;
}
function subtract(arg1, arg2) {
return arg1 - arg2;
}
function multiply(arg1, arg2) {
return arg1 * arg2;
}
function divide(arg1, arg2) {
return arg1 / arg2;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment