--- id: 5d792532b07918c3a5904913 title: Part 5 challengeType: 0 dashedName: part-5 --- # --description-- Anonymous functions are functions without names - they are used only once and then forgotten. The syntax is the same as for normal functions but without the name: ```js function(x) { return x } ``` First, remove the `addVar` definition. # --hints-- See description above for instructions. ```js assert(!code.replace(/\s/g, '').includes('constaddVar=add')); ``` # --seed-- ## --before-user-code-- ```html Spreadsheet
``` ## --after-user-code-- ```html ``` ## --seed-contents-- ```html ``` # --solutions-- ```html ```