--- id: 5d792539e1446045d0df6d28 title: Part 135 challengeType: 0 dashedName: part-135 --- # --description-- The `some` method checks if any element of the array satisfies the provided testing function. Add `someeven` to `spreadsheetFunctions`, which checks if any of the items passed in are even. # --hints-- See description above for instructions. ```js assert( spreadsheetFunctions.someeven([1, 5, 4, 3]) && !spreadsheetFunctions.someeven([3, 5, 9]) && code.includes('.some') ); ``` # --seed-- ## --before-user-code-- ```html Spreadsheet
``` ## --after-user-code-- ```html ``` ## --seed-contents-- ```html ``` # --solutions-- ```html ```