--- title: SEDOLs id: 59d9c6bc214c613ba73ff012 challengeType: 5 videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert(typeof sedol === "function", "sedol is a function.");' - text: '' testString: 'assert(sedol("a") === null, "sedol("a") should return null.");' - text: '' testString: 'assert(sedol("710889") === "7108899", "sedol("710889") should return "7108899".");' - text: '' testString: 'assert(sedol("BOATER") === null, "sedol("BOATER") should return null.");' - text: '' testString: 'assert(sedol("228276") === "2282765", "sedol("228276") should return "2282765".");' ```
## Challenge Seed
```js function sedol (input) { // Good luck! return true; } ```
## Solution
```js // solution required ```