Skip to content

Instantly share code, notes, and snippets.

@gjgd
Last active August 14, 2019 22:14
Show Gist options
  • Save gjgd/dd6a20554bd3efa5451158a878891d75 to your computer and use it in GitHub Desktop.
Save gjgd/dd6a20554bd3efa5451158a878891d75 to your computer and use it in GitHub Desktop.
// Add two numbers
const add = (a, b) => {
return a + b;
};
// Subtract two numbers
const subtract = (a, b) => {
return a - b;
};
// Multiply two numbers
const multiply = (a, b) => {
return a * b;
};
// Divide two numbers
const divide = (a, b) => {
if (b === 0) {
throw new Error('Cannot divide by 0');
}
return a / b;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment