--- id: 5d7925387b682e962f209269 title: Part 110 challengeType: 0 dashedName: part-110 --- # --description-- In `idToText`, use the `id` property of `cell` to make sure the argument is equal to the cell's id rather than the cell itself. # --hints-- See description above for instructions. ```js assert( /constidToText=\(?id\)?=>cells\.find\(\(?cell\)?=>cell\.id===id\)/.test( code.replace(/\s/g, '') ) ); ``` # --seed-- ## --before-user-code-- ```html Spreadsheet
``` ## --after-user-code-- ```html ``` ## --seed-contents-- ```html ``` # --solutions-- ```html ```