Call a function on different sets of parameters.
const callForArgs = (fn, ...argz) => argz.forEach((arg) => fn(...arg))