Skip to content

Instantly share code, notes, and snippets.

@cmstead
Created October 1, 2017 20:46
Show Gist options
  • Save cmstead/0cfbc6c9993a547ccc406bef0a071bb3 to your computer and use it in GitHub Desktop.
Save cmstead/0cfbc6c9993a547ccc406bef0a071bb3 to your computer and use it in GitHub Desktop.
MultiplyThenDivide composition
const multiply = (a, b) => a * b;
const divide = (a, b) => a / b;
const multiplyThenDivide = (a, b, c) => divide(multiply(a, b), c);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment