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