Given an Array of Functions fns, what argument(s) can you pass to fns.forEach such that each function in fns will execute, in order, without creating any anonymous (or named) functions or invoking the Function constructor?
- Do not use the
functionkeyword, or arrow functions() =>. - Do not invoke the
Functionconstructor. - Do not use method definitions.
Function#bind& friends on theFunction.prototypeare ok.