Skip to content

Instantly share code, notes, and snippets.

@gjgd
Last active August 14, 2019 22:14
Show Gist options
  • Save gjgd/c7d4ccf9749fd61663e5433717a06e27 to your computer and use it in GitHub Desktop.
Save gjgd/c7d4ccf9749fd61663e5433717a06e27 to your computer and use it in GitHub Desktop.
// Add two numbers
const add = (a, b) => {
// TODO: Implement here
return 0;
};
const subtract = (a, b) => {
return a - b;
};
// Multiply two numbers
const mulltiply = (a, b) => {
return a * b;
};
// Divide two numbers
const divide = (a, b) => {
return a / b;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment