Created
April 3, 2023 01:52
-
-
Save mitchallen/790182918db40f3b3d1dbafe83d2af35 to your computer and use it in GitHub Desktop.
Simple javascript tools demo
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
"use strict"; | |
module.exports = { | |
add: (a,b) => a + b, | |
subtract: (a,b) => a - b | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment