Skip to content

Instantly share code, notes, and snippets.

@rahulbanerjee26
Created August 18, 2021 17:53
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 rahulbanerjee26/244ce915f4a451e79eb531257dbc3624 to your computer and use it in GitHub Desktop.
Save rahulbanerjee26/244ce915f4a451e79eb531257dbc3624 to your computer and use it in GitHub Desktop.
const add =
(a, b) => a + b
const subtract =
(a, b) => a - b
const multiply =
(a, b) => a * b
const divide =
(a, b) => a / b
module.exports = {
add,subtract,multiply,divide
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment