Skip to content

Instantly share code, notes, and snippets.

@udittyagi
Created August 23, 2019 14:11
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/343aaaa282469d194022464a0d518a20 to your computer and use it in GitHub Desktop.
Save udittyagi/343aaaa282469d194022464a0d518a20 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 = {
sum,
multiply
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment