Curried function that takes two numbers and returns the second divided by the first.
const a = divideBy(4)(2); // 0.5const b = divideBy(2)(4); // 2 Copy
const a = divideBy(4)(2); // 0.5const b = divideBy(2)(4); // 2
Curried function that takes two numbers and returns the second divided by the first.
Example