const makeAdder = x => y => x + y; const add5 = makeAdder(5); add5(10);
const add = (x, y) => x + y; const add5 = add.bind(null, 5); add5(10);