--- id: 5d792538631844ad0bdfb4c3 title: Part 114 challengeType: 0 dashedName: part-114 --- # --description-- `evalFormula` is now pure, as it now has no external dependencies, and as before, performs no side effects. Now define a new function, `increment` inside `spreadsheetFunctions`, which takes `nums` as argument and uses `map` to increment each value of `nums` by 1. # --hints-- See description above for instructions. ```js assert(JSON.stringify(spreadsheetFunctions.increment([1, 5, 3])) === '[2,6,4]'); ``` # --seed-- ## --before-user-code-- ```html Spreadsheet
``` ## --after-user-code-- ```html ``` ## --seed-contents-- ```html ``` # --solutions-- ```html ```