--- title: Count the coins id: 59713bd26bdeb8a594fb9413 challengeType: 5 videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert(typeof countCoins === "function", "countCoins is a function.");' - text: '' testString: 'assert.equal(countCoins(), 242, "countCoints() should return 242.");' ```
## Challenge Seed
```js function countCoins () { // Good luck! return true; } ```
## Solution
```js // solution required ```