Skip to content

Instantly share code, notes, and snippets.

@mitchallen
Created April 3, 2023 01:52
Show Gist options
  • Save mitchallen/790182918db40f3b3d1dbafe83d2af35 to your computer and use it in GitHub Desktop.
Save mitchallen/790182918db40f3b3d1dbafe83d2af35 to your computer and use it in GitHub Desktop.
Simple javascript tools demo
"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