1
JavaScriptIntermediate#functions
Transforming a multi-argument function into a chain of single-argument functions, which enables partial application and reusable specialised helpers.
const mul = a => b => a * b; const double = mul(2); double(5); // 10