--- id: 5d7925383f122a279f4c54ad title: Part 109 challengeType: 0 dashedName: part-109 --- # --description-- The `find` method returns the first element of an array that satisfies the function passed to it. Chain `find` onto `cells` and pass it `cell => cell === id`. # --hints-- See description above for instructions. ```js assert( /constidToText=\(?id\)?=>cells\.find\(\(?cell\)?=>cell===id\)/.test( code.replace(/\s/g, '') ) ); ``` # --seed-- ## --before-user-code-- ```html Spreadsheet
``` ## --after-user-code-- ```html ``` ## --seed-contents-- ```html ``` # --solutions-- ```html ```