--- id: 5d792538de774217b173288e title: Part 111 challengeType: 0 dashedName: part-111 --- # --description-- Use the `value` property on the result of `idToText` to return the text inside the cell, rather than the cell itself. # --hints-- See description above for instructions. ```js assert( /constidToText=\(?id\)?=>cells\.find\(\(?cell\)?=>cell\.id===id\)\.value/.test( code.replace(/\s/g, '') ) ); ``` # --seed-- ## --before-user-code-- ```html Spreadsheet
``` ## --after-user-code-- ```html ``` ## --seed-contents-- ```html ``` # --solutions-- ```html ```