Slide 72
Slide 72 text
const superAdd = (a, b, c, d) => a + b + c + d;
const oneArgumentApplied = (b, c, d) => superAdd(1, b, c, d);
const twoArgumentsApplied = (c, d) => superAdd(1, 2, c, d);
const threeArgumentsApplied = (d) => superAdd(1, 2, 3, d);
const fourArgumentsApplied = () => superAdd(1, 2, 3, 4);