Skip to content

Instantly share code, notes, and snippets.

@ddialar
Last active August 12, 2017 11:17
Show Gist options
  • Save ddialar/34884a0d6b8cc38b3240e21a90d4cb67 to your computer and use it in GitHub Desktop.
Save ddialar/34884a0d6b8cc38b3240e21a90d4cb67 to your computer and use it in GitHub Desktop.
const sum = (a, b) => {
return a + b;
};
const dif = (a, b) => {
return a - b;
};
export {
sum,
dif
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment