Skip to content

Instantly share code, notes, and snippets.

@beeman
Last active June 7, 2018 07:24
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 beeman/c2675265c0e3134958d6acf8d72332be to your computer and use it in GitHub Desktop.
Save beeman/c2675265c0e3134958d6acf8d72332be to your computer and use it in GitHub Desktop.
export const divide = (a: number, b: number): number => a / b
export const multiply = (a: number, b: number): number => a * b
export const power = (a: number, b: number): number => a ** b
export const sum = (a: number, b: number): number => a + b
export const subtract = (a: number, b: number): number => a - b
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment