Skip to content

Instantly share code, notes, and snippets.

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