Created
June 26, 2017 18:15
-
-
Save AnkurVyas-BTC/b4c3f024d054d0c8ac4c3f5cbc46bb49 to your computer and use it in GitHub Desktop.
Simple calculator js file for tests
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
| 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