--- id: 5d7925323be8848dbc58a07a title: Step 2 challengeType: 0 dashedName: step-2 --- # --description-- Above `infixToFunction`, define an empty function `add` using the `function` keyword. It should accept two parameters, `x` and `y`. # --hints-- See description above for instructions. ```js assert(code.replace(/\s/g, '').includes('functionadd(x,y){}')); ``` # --seed-- ## --before-user-code-- ```html Spreadsheet
``` ## --after-user-code-- ```html ``` ## --seed-contents-- ```html ``` # --solutions-- ```html ```