// When should you repeat code? // Teaching excerpts; see the explanation and boundaries on the episode page. // Make the rule explicit const makeDiscount = (rate, cap = Infinity) => price => Math.min(price * rate, cap); const employeeDiscount = makeDiscount(0.1); const promoDiscount = makeDiscount(0.1, 25);