Skip to content

Instantly share code, notes, and snippets.

@udittyagi
Created August 24, 2019 14:37
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 udittyagi/0e3f9e7126841ce11cd2b84036213774 to your computer and use it in GitHub Desktop.
Save udittyagi/0e3f9e7126841ce11cd2b84036213774 to your computer and use it in GitHub Desktop.
const sum = (a, b) => {
return a + b;
};
const multiply = (a, b) => {
return a * b
};
module.exports = {
multiply
}
exports.sum = sum;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment