--- id: 5d792534b92f3d1cd4410ce3 title: Part 32 challengeType: 0 dashedName: part-32 --- # --description-- Define a new function `applyFunction` (inside `applyFn`). It should take two arguments: `fn` and `args`, and should return `spreadsheetFunctions`. # --hints-- See description above for instructions. ```js assert( code .replace(/\s/g, '') .includes( 'consttoNumberList=args=>args.split(",").map(parseFloat);constapplyFunction=(fn,args)=>spreadsheetFunctions' ) ); ``` # --seed-- ## --before-user-code-- ```html Spreadsheet
``` ## --after-user-code-- ```html ``` ## --seed-contents-- ```html ``` # --solutions-- ```html ```